From ab17a6547e5d699925bbca78e6db6bb87c9ab536 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=C2=A0Koby=C5=82ko?= Date: Sun, 5 Nov 2023 22:34:49 +0100 Subject: [PATCH 01/14] Add support for Steam codes --- .../buildlogic/extension/KotlinAndroid.kt | 22 ++--- .../com/twofasapp/common/domain/Service.kt | 3 +- .../twofasapp/designsystem/common/Progress.kt | 3 +- .../common/TwOutlinedTextField.kt | 2 +- .../designsystem/service/DsService.kt | 5 +- .../designsystem/service/DsServiceModal.kt | 5 +- .../designsystem/service/ServiceAuthType.kt | 2 +- .../designsystem/service/ServiceState.kt | 2 +- .../designsystem/service/StateMapper.kt | 1 + .../designsystem/service/atoms/ServiceCode.kt | 1 + .../com/twofasapp/otp/OtpAuthenticator.kt | 16 +++- .../main/java/com/twofasapp/otp/OtpData.kt | 1 + .../data/services/ServicesRepositoryImpl.kt | 1 + .../data/services/mapper/ServiceMapper.kt | 4 +- .../data/services/otp/OtpLinkParser.kt | 3 +- .../data/services/otp/ServiceCodeGenerator.kt | 47 ++++++++-- .../externalimport/domain/AegisImporter.kt | 4 +- .../externalimport/domain/AndOtpImporter.kt | 2 +- .../domain/AuthenticatorProImporter.kt | 18 +++- .../externalimport/domain/LastPassImporter.kt | 2 +- .../externalimport/domain/RaivoImporter.kt | 4 +- .../AdvancedSettingsScreen.kt | 17 ++++ .../add/manual/AddServiceManualScreen.kt | 91 +++++++++---------- .../add/manual/AddServiceManualViewModel.kt | 30 ++++-- .../feature/widget/ui/widget/WidgetContent.kt | 1 + gradle/libs.versions.toml | 18 ++-- 26 files changed, 197 insertions(+), 108 deletions(-) diff --git a/buildlogic/src/main/java/com/twofasapp/buildlogic/extension/KotlinAndroid.kt b/buildlogic/src/main/java/com/twofasapp/buildlogic/extension/KotlinAndroid.kt index 262cdb87..cac894ad 100644 --- a/buildlogic/src/main/java/com/twofasapp/buildlogic/extension/KotlinAndroid.kt +++ b/buildlogic/src/main/java/com/twofasapp/buildlogic/extension/KotlinAndroid.kt @@ -2,8 +2,6 @@ package com.twofasapp.buildlogic.extension import com.android.build.api.dsl.CommonExtension import com.twofasapp.buildlogic.version.AppConfig -import com.twofasapp.buildlogic.version.AppConfig.compileSdk -import com.twofasapp.buildlogic.version.AppConfig.minSdk import org.gradle.api.JavaVersion import org.gradle.api.Project import org.gradle.api.plugins.ExtensionAware @@ -55,15 +53,17 @@ internal fun Project.applyKotlinAndroid( } packaging { - resources.excludes.add("META-INF/DEPENDENCIES") - resources.excludes.add("META-INF/LICENSE") - resources.excludes.add("META-INF/LICENSE.txt") - resources.excludes.add("META-INF/license.txt") - resources.excludes.add("META-INF/NOTICE") - resources.excludes.add("META-INF/NOTICE.txt") - resources.excludes.add("META-INF/notice.txt") - resources.excludes.add("META-INF/ASL2.0") - resources.excludes.add("/META-INF/{AL2.0,LGPL2.1}") + resources { + excludes += "META-INF/DEPENDENCIES" + excludes += "META-INF/LICENSE" + excludes += "META-INF/LICENSE.txt" + excludes += "META-INF/license.txt" + excludes += "META-INF/NOTICE" + excludes += "META-INF/NOTICE.txt" + excludes += "META-INF/notice.txt" + excludes += "META-INF/ASL2.0" + excludes += "/META-INF/{AL2.0,LGPL2.1}" + } } testOptions { diff --git a/core/common/src/main/java/com/twofasapp/common/domain/Service.kt b/core/common/src/main/java/com/twofasapp/common/domain/Service.kt index 8a84b5f0..cb63e659 100644 --- a/core/common/src/main/java/com/twofasapp/common/domain/Service.kt +++ b/core/common/src/main/java/com/twofasapp/common/domain/Service.kt @@ -38,7 +38,7 @@ data class Service( val progress: Float, ) - enum class AuthType { TOTP, HOTP } + enum class AuthType { TOTP, HOTP, STEAM } enum class Algorithm { SHA1, SHA224, SHA256, SHA384, SHA512 } enum class ImageType { IconCollection, Label } enum class Source { Link, Manual } @@ -58,6 +58,7 @@ data class Service( } companion object { + val DefaultAuthType = AuthType.TOTP val DefaultAlgorithm = Algorithm.SHA1 const val DefaultPeriod = 30 const val DefaultDigits = 6 diff --git a/core/designsystem/src/main/java/com/twofasapp/designsystem/common/Progress.kt b/core/designsystem/src/main/java/com/twofasapp/designsystem/common/Progress.kt index f43fd704..06ecd999 100644 --- a/core/designsystem/src/main/java/com/twofasapp/designsystem/common/Progress.kt +++ b/core/designsystem/src/main/java/com/twofasapp/designsystem/common/Progress.kt @@ -12,7 +12,6 @@ import androidx.compose.ui.unit.dp fun TwCircularProgressIndicator( modifier: Modifier = Modifier, color: Color = ProgressIndicatorDefaults.circularColor, - - ) { +) { CircularProgressIndicator(modifier.size(32.dp), color, 4.dp) } diff --git a/core/designsystem/src/main/java/com/twofasapp/designsystem/common/TwOutlinedTextField.kt b/core/designsystem/src/main/java/com/twofasapp/designsystem/common/TwOutlinedTextField.kt index c445bb17..d153bb66 100644 --- a/core/designsystem/src/main/java/com/twofasapp/designsystem/common/TwOutlinedTextField.kt +++ b/core/designsystem/src/main/java/com/twofasapp/designsystem/common/TwOutlinedTextField.kt @@ -69,7 +69,7 @@ fun TwOutlinedTextField( var textValue by remember { mutableStateOf(TextFieldValue(value, selection = TextRange(value.length))) } OutlinedTextField( - value = textValue, + value = textValue.copy(text = value), onValueChange = { if (it.text.length <= maxLength) { textValue = it diff --git a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/DsService.kt b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/DsService.kt index 47d9642b..b2666f90 100644 --- a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/DsService.kt +++ b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/DsService.kt @@ -159,7 +159,7 @@ fun DsService( ServiceStyle.Default -> NextCodeGravity.Below ServiceStyle.Compact -> NextCodeGravity.End }, - animateColor = state.authType == ServiceAuthType.Totp, + animateColor = state.authType == ServiceAuthType.Totp || state.authType == ServiceAuthType.Steam, textStyles = textStyles, modifier = Modifier .fillMaxWidth() @@ -183,6 +183,7 @@ fun DsService( if (state.revealed || hideCodes.not() || state.authType == ServiceAuthType.Hotp) { when (state.authType) { + ServiceAuthType.Steam, ServiceAuthType.Totp -> { ServiceTimer( timer = state.timer, @@ -202,7 +203,7 @@ fun DsService( } } } else { - if (state.authType == ServiceAuthType.Totp) { + if (state.authType == ServiceAuthType.Totp || state.authType == ServiceAuthType.Steam) { Box( Modifier .padding(end = 7.dp) diff --git a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/DsServiceModal.kt b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/DsServiceModal.kt index ae172bb3..687ec48e 100644 --- a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/DsServiceModal.kt +++ b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/DsServiceModal.kt @@ -96,7 +96,7 @@ fun DsServiceModal( nextCode = state.nextCode, timer = state.timer, nextCodeVisible = state.isNextCodeEnabled(showNextCode), - animateColor = state.authType == ServiceAuthType.Totp, + animateColor = state.authType == ServiceAuthType.Totp || state.authType == ServiceAuthType.Steam, modifier = Modifier .fillMaxWidth() .alpha(if (state.revealed || hideCodes.not()) 1f else 0f), @@ -115,6 +115,7 @@ fun DsServiceModal( if (state.revealed || hideCodes.not() || state.authType == ServiceAuthType.Hotp) { when (state.authType) { + ServiceAuthType.Steam, ServiceAuthType.Totp -> { ServiceTimer( timer = state.timer, @@ -132,7 +133,7 @@ fun DsServiceModal( } } } else { - if (state.authType == ServiceAuthType.Totp) { + if (state.authType == ServiceAuthType.Totp || state.authType == ServiceAuthType.Steam) { Box( Modifier .size(56.dp) diff --git a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/ServiceAuthType.kt b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/ServiceAuthType.kt index f297529d..721344c0 100644 --- a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/ServiceAuthType.kt +++ b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/ServiceAuthType.kt @@ -1,3 +1,3 @@ package com.twofasapp.designsystem.service -enum class ServiceAuthType { Totp, Hotp } \ No newline at end of file +enum class ServiceAuthType { Totp, Hotp, Steam } \ No newline at end of file diff --git a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/ServiceState.kt b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/ServiceState.kt index ecbca3ac..4f2f7137 100644 --- a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/ServiceState.kt +++ b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/ServiceState.kt @@ -43,7 +43,7 @@ data class ServiceState( } fun isNextCodeEnabled(showNextCode: Boolean): Boolean { - return timer <= ServiceExpireTransitionThreshold && showNextCode && authType == ServiceAuthType.Totp + return timer <= ServiceExpireTransitionThreshold && showNextCode && (authType == ServiceAuthType.Totp || authType == ServiceAuthType.Steam) } companion object { diff --git a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/StateMapper.kt b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/StateMapper.kt index 9eb59ad9..cf8e21fe 100644 --- a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/StateMapper.kt +++ b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/StateMapper.kt @@ -23,6 +23,7 @@ fun Service.asState(): ServiceState { authType = when (authType) { Service.AuthType.TOTP -> ServiceAuthType.Totp Service.AuthType.HOTP -> ServiceAuthType.Hotp + Service.AuthType.STEAM -> ServiceAuthType.Steam }, iconLight = iconLight, iconDark = iconDark, diff --git a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/atoms/ServiceCode.kt b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/atoms/ServiceCode.kt index 5d5ed865..ec161dfa 100644 --- a/core/designsystem/src/main/java/com/twofasapp/designsystem/service/atoms/ServiceCode.kt +++ b/core/designsystem/src/main/java/com/twofasapp/designsystem/service/atoms/ServiceCode.kt @@ -82,6 +82,7 @@ fun String.formatCode(): String { if (isEmpty()) return "" return when (this.length) { + 5 -> if (this.toIntOrNull() == null) take(5) else "${take(3)} ${takeLast(2)}" 6 -> "${take(3)} ${takeLast(3)}" 7 -> "${take(4)} ${takeLast(3)}" 8 -> "${take(4)} ${takeLast(4)}" diff --git a/core/otp/src/main/java/com/twofasapp/otp/OtpAuthenticator.kt b/core/otp/src/main/java/com/twofasapp/otp/OtpAuthenticator.kt index 320c5209..fbe86b6a 100755 --- a/core/otp/src/main/java/com/twofasapp/otp/OtpAuthenticator.kt +++ b/core/otp/src/main/java/com/twofasapp/otp/OtpAuthenticator.kt @@ -33,6 +33,7 @@ class OtpAuthenticator { private const val HmacSha384 = "HmacSHA384" private const val HmacSha512 = "HmacSHA512" private val keyModulus = mapOf( + 5 to 10.0.pow(5.toDouble()).toLong(), 6 to 10.0.pow(6.toDouble()).toLong(), 7 to 10.0.pow(7.toDouble()).toLong(), 8 to 10.0.pow(8.toDouble()).toLong(), @@ -50,7 +51,8 @@ class OtpAuthenticator { OtpData.Algorithm.SHA256 -> HmacSha256 OtpData.Algorithm.SHA384 -> HmacSha384 OtpData.Algorithm.SHA512 -> HmacSha512 - } + }, + calculateModule = otpData.calculateModule, ) return String.format("%0${otpData.digits}d", code) @@ -69,6 +71,7 @@ class OtpAuthenticator { counter: Long, digits: Int, algorithm: String, + calculateModule: Boolean, ): Int { // Converting the instant of time from the long representation to a big-endian array of bytes (RFC4226, 5.2. Description). val bigEndianTimestamp = ByteArray(8) @@ -104,10 +107,15 @@ class OtpAuthenticator { } // Clean bits higher than the 32nd (inclusive) and calculate the module with the maximum validation code value. - truncatedHash = truncatedHash and 0x7FFFFFFF - truncatedHash %= keyModulus[digits]!! + return if (calculateModule) { + truncatedHash = truncatedHash and 0x7FFFFFFF + truncatedHash %= keyModulus[digits]!! + truncatedHash.toInt() + } else { + truncatedHash = truncatedHash and 0x7FFFFFFF + truncatedHash.toInt() + } - return truncatedHash.toInt() } catch (e: NoSuchAlgorithmException) { throw OtpException("The operation cannot be performed now.", e) } catch (e: InvalidKeyException) { diff --git a/core/otp/src/main/java/com/twofasapp/otp/OtpData.kt b/core/otp/src/main/java/com/twofasapp/otp/OtpData.kt index 8fbf4019..32370266 100644 --- a/core/otp/src/main/java/com/twofasapp/otp/OtpData.kt +++ b/core/otp/src/main/java/com/twofasapp/otp/OtpData.kt @@ -6,6 +6,7 @@ data class OtpData( val digits: Int, val period: Int, val algorithm: Algorithm, + val calculateModule: Boolean, // Do not calculate for Steam codes ) { enum class Algorithm { SHA1, SHA224, SHA256, SHA384, SHA512 } } \ No newline at end of file diff --git a/data/services/src/main/java/com/twofasapp/data/services/ServicesRepositoryImpl.kt b/data/services/src/main/java/com/twofasapp/data/services/ServicesRepositoryImpl.kt index 9d94df6f..e4bd8fe0 100644 --- a/data/services/src/main/java/com/twofasapp/data/services/ServicesRepositoryImpl.kt +++ b/data/services/src/main/java/com/twofasapp/data/services/ServicesRepositoryImpl.kt @@ -242,6 +242,7 @@ internal class ServicesRepositoryImpl( } val digits = when { + otpDigits == 5 -> 5 otpDigits == 6 -> 6 otpDigits == 7 -> 7 otpDigits == 8 -> 8 diff --git a/data/services/src/main/java/com/twofasapp/data/services/mapper/ServiceMapper.kt b/data/services/src/main/java/com/twofasapp/data/services/mapper/ServiceMapper.kt index d8245e48..3e98149a 100644 --- a/data/services/src/main/java/com/twofasapp/data/services/mapper/ServiceMapper.kt +++ b/data/services/src/main/java/com/twofasapp/data/services/mapper/ServiceMapper.kt @@ -22,7 +22,7 @@ internal fun ServiceEntity.asDomain(): Service { secret = secret, name = name, info = otpAccount, - authType = authType?.let { Service.AuthType.valueOf(it) } ?: Service.AuthType.TOTP, + authType = authType?.let { Service.AuthType.valueOf(it) } ?: Service.DefaultAuthType, period = otpPeriod, digits = otpDigits, algorithm = otpAlgorithm?.let { Service.Algorithm.valueOf(it) }, @@ -134,7 +134,7 @@ internal fun BackupService.asDomain( secret = secret, name = name, info = otp.account ?: otp.label, - authType = otp.tokenType?.let { enumValueOf(it) } ?: Service.AuthType.TOTP, + authType = otp.tokenType?.let { enumValueOf(it) } ?: Service.DefaultAuthType, link = otp.link, issuer = otp.issuer, period = otp.period, diff --git a/data/services/src/main/java/com/twofasapp/data/services/otp/OtpLinkParser.kt b/data/services/src/main/java/com/twofasapp/data/services/otp/OtpLinkParser.kt index 4e3fa414..27f55ebb 100644 --- a/data/services/src/main/java/com/twofasapp/data/services/otp/OtpLinkParser.kt +++ b/data/services/src/main/java/com/twofasapp/data/services/otp/OtpLinkParser.kt @@ -9,6 +9,7 @@ object OtpLinkParser { private const val OTPAUTH = "otpauth" private const val TOTP = "totp" private const val HOTP = "hotp" + private const val STEAM = "steam" private const val SECRET = "secret" private const val ISSUER = "issuer" @@ -52,7 +53,7 @@ object OtpLinkParser { private fun isUriValid(uri: Uri?) = uri?.scheme?.lowercase() == OTPAUTH private fun isAuthorityValid(uri: Uri) = - uri.authority?.lowercase() == TOTP || uri.authority?.lowercase() == HOTP + uri.authority?.lowercase() == TOTP || uri.authority?.lowercase() == HOTP || uri.authority?.lowercase() == STEAM private fun mapQueryParams(uri: Uri) = uri.queryParameterNames.associateWith { uri.getQueryParameter(it)!! } diff --git a/data/services/src/main/java/com/twofasapp/data/services/otp/ServiceCodeGenerator.kt b/data/services/src/main/java/com/twofasapp/data/services/otp/ServiceCodeGenerator.kt index 815b37ad..ab1f31b2 100644 --- a/data/services/src/main/java/com/twofasapp/data/services/otp/ServiceCodeGenerator.kt +++ b/data/services/src/main/java/com/twofasapp/data/services/otp/ServiceCodeGenerator.kt @@ -1,15 +1,19 @@ package com.twofasapp.data.services.otp -import com.twofasapp.common.time.TimeProvider import com.twofasapp.common.domain.Service +import com.twofasapp.common.time.TimeProvider import com.twofasapp.otp.OtpAuthenticator import com.twofasapp.otp.OtpData import timber.log.Timber -import java.time.Instant class ServiceCodeGenerator( private val timeProvider: TimeProvider, ) { + companion object { + private const val SteamCharset = "23456789BCDFGHJKMNPQRTVWXY" + private const val SteamDigits = 5 + } + private val authenticator = OtpAuthenticator() fun check(secret: String): Boolean { @@ -41,6 +45,7 @@ class ServiceCodeGenerator( Service.Algorithm.SHA384 -> OtpData.Algorithm.SHA384 Service.Algorithm.SHA512 -> OtpData.Algorithm.SHA512 }, + calculateModule = true, ) ) true @@ -67,6 +72,7 @@ class ServiceCodeGenerator( var nextCounter = 0L when (service.authType) { + Service.AuthType.STEAM, Service.AuthType.TOTP -> { currentCounter = timeProvider.realCurrentTime() / period.toMillis() nextCounter = (timeProvider.realCurrentTime() + period.toMillis()) / period.toMillis() @@ -85,28 +91,51 @@ class ServiceCodeGenerator( digits = digits, period = period, algorithm = algorithm, + calculateModule = when (service.authType) { + Service.AuthType.TOTP -> true + Service.AuthType.HOTP -> true + Service.AuthType.STEAM -> false + }, ) val timerLeftMillis = periodMillis - timeProvider.realCurrentTime() % periodMillis val timer = timerLeftMillis / 1000 + 1 // show 1 as the last number instead of 0, just for nicer UI val progress = timer / period.toFloat() + var currentCode = authenticator.generateOtpCode(otpData) + var nextCode = authenticator.generateOtpCode(otpData.copy(counter = nextCounter)) + + when (service.authType) { + Service.AuthType.TOTP -> Unit + Service.AuthType.HOTP -> Unit + Service.AuthType.STEAM -> { + currentCode = generateSteamCode(currentCode) + nextCode = generateSteamCode(nextCode) + } + } + return service.copy( code = Service.Code( - current = authenticator.generateOtpCode(otpData), - next = authenticator.generateOtpCode(otpData.copy(counter = nextCounter)), + current = currentCode, + next = nextCode, timer = timer.toInt(), progress = progress, ) ) } - // To be removed - private fun calculateTimer(period: Int): Int { - return period - ((Instant.now().epochSecond + timeProvider.realTimeDelta() / 1000) % period).toInt() - } - private fun Int.toMillis(): Long { return this * 1000L } + + private fun generateSteamCode(code: String): String { + var numericCode = code.toInt() + + return buildString { + repeat(SteamDigits) { + append(SteamCharset[numericCode % SteamCharset.length]) + numericCode /= SteamCharset.length + } + } + } } \ No newline at end of file diff --git a/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AegisImporter.kt b/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AegisImporter.kt index 50265c73..a46ae22e 100644 --- a/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AegisImporter.kt +++ b/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AegisImporter.kt @@ -71,8 +71,8 @@ internal class AegisImporter( model.db.entries .asSequence() - .filter { it.type.equals("totp", true) || it.type.equals("hotp", true) } - .filter { it.info.digits == 6 || it.info.digits == 7 || it.info.digits == 8 } + .filter { it.type.equals("totp", true) || it.type.equals("hotp", true) || it.type.equals("steam", true)} + .filter { it.info.digits == 5 ||it.info.digits == 6 || it.info.digits == 7 || it.info.digits == 8 } .filter { it.info.period == 30 || it.info.period == 60 || it.info.period == 90 } .filter { it.info.algo.equals("SHA1", true) || it.info.algo.equals("SHA224", true) || it.info.algo.equals( diff --git a/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AndOtpImporter.kt b/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AndOtpImporter.kt index df14b60e..cd89ea6a 100644 --- a/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AndOtpImporter.kt +++ b/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AndOtpImporter.kt @@ -55,7 +55,7 @@ internal class AndOtpImporter( val servicesToImport = mutableListOf() models - .filter { it.digits == 6 || it.digits == 7 || it.digits == 8 || it.digits == null } + .filter { it.digits == 5 || it.digits == 6 || it.digits == 7 || it.digits == 8 || it.digits == null } .filter { it.period == 30 || it.period == 60 || it.period == 90 || it.period == null } .filter { it.algorithm.equals("SHA1", true) || diff --git a/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AuthenticatorProImporter.kt b/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AuthenticatorProImporter.kt index 7e78ffb4..87d28561 100644 --- a/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AuthenticatorProImporter.kt +++ b/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/AuthenticatorProImporter.kt @@ -2,6 +2,7 @@ package com.twofasapp.feature.externalimport.domain import android.content.Context import android.net.Uri +import com.twofasapp.common.domain.OtpAuthLink import com.twofasapp.common.domain.Service import com.twofasapp.data.services.ServicesRepository import com.twofasapp.data.services.otp.OtpLinkParser @@ -39,7 +40,22 @@ internal class AuthenticatorProImporter( text.lines() .filter { it.isNotBlank() } .filter { it.startsWith("otpauth", ignoreCase = true) } - .mapNotNull { OtpLinkParser.parse(it) } + .mapNotNull { link -> + // Detect steam link + if (link.contains("issuer=steam", ignoreCase = true) || link.contains("&steam", ignoreCase = true)) { + val otpLink = OtpLinkParser.parse(link) + otpLink?.copy( + type = "STEAM", + params = mapOf( + OtpAuthLink.ParamDigits to "5", + OtpAuthLink.ParamPeriod to "30", + OtpAuthLink.ParamAlgorithm to "SHA1", + ) + ) + } else { + OtpLinkParser.parse(link) + } + } .filter { servicesRepository.isServiceValid(it) } .forEach { entry -> servicesToImport.add(ServiceParser.parseService(entry)) } diff --git a/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/LastPassImporter.kt b/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/LastPassImporter.kt index 0c241b47..5a78342d 100644 --- a/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/LastPassImporter.kt +++ b/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/LastPassImporter.kt @@ -56,7 +56,7 @@ internal class LastPassImporter( val totalServices = model.accounts.size val servicesToImport = mutableListOf() - model.accounts.filter { it.digits == 6 || it.digits == 7 || it.digits == 8 } + model.accounts.filter { it.digits == 5 ||it.digits == 6 || it.digits == 7 || it.digits == 8 } .filter { it.timeStep == 30 || it.timeStep == 60 || it.timeStep == 90 }.filter { it.algorithm.equals("SHA1", true) || it.algorithm.equals("SHA224", true) || it.algorithm.equals( "SHA256", true diff --git a/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/RaivoImporter.kt b/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/RaivoImporter.kt index 7ee85da2..951965b9 100644 --- a/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/RaivoImporter.kt +++ b/feature/externalimport/src/main/java/com/twofasapp/feature/externalimport/domain/RaivoImporter.kt @@ -2,9 +2,9 @@ package com.twofasapp.feature.externalimport.domain import android.content.Context import android.net.Uri +import com.twofasapp.common.domain.OtpAuthLink import com.twofasapp.common.domain.Service import com.twofasapp.data.services.otp.ServiceParser -import com.twofasapp.common.domain.OtpAuthLink import kotlinx.serialization.Serializable import kotlinx.serialization.json.Json import java.io.BufferedReader @@ -53,7 +53,7 @@ internal class RaivoImporter( model .filter { it.kind.equals("totp", true) || it.kind.equals("hotp", true) } - .filter { it.digits.equals("6") || it.digits.equals("7") || it.digits.equals("8") } + .filter { it.digits.equals("5") || it.digits.equals("6") || it.digits.equals("7") || it.digits.equals("8") } .filter { it.timer.equals("30") || it.timer.equals("60") || it.timer.equals("90") } .filter { it.algorithm.equals("SHA1", true) || it.algorithm.equals("SHA224", true) || it.algorithm.equals( diff --git a/feature/home/src/main/java/com/twofasapp/feature/home/ui/editservice/advancedsettings/AdvancedSettingsScreen.kt b/feature/home/src/main/java/com/twofasapp/feature/home/ui/editservice/advancedsettings/AdvancedSettingsScreen.kt index 01aa3c88..f1ee9609 100644 --- a/feature/home/src/main/java/com/twofasapp/feature/home/ui/editservice/advancedsettings/AdvancedSettingsScreen.kt +++ b/feature/home/src/main/java/com/twofasapp/feature/home/ui/editservice/advancedsettings/AdvancedSettingsScreen.kt @@ -67,6 +67,23 @@ internal fun AdvancedSettingsScreen( ) } + item { + SettingsLink( + title = "STEAM", + enabled = false, + endContent = { + RadioButton( + selected = service.authType == Service.AuthType.STEAM, + enabled = false, + onClick = {}, + colors = RadioButtonDefaults.colors( + selectedColor = TwTheme.color.primary, + unselectedColor = Color(0xFF585858), + ) + ) + } + ) + } item { SettingsDivider() } diff --git a/feature/home/src/main/java/com/twofasapp/feature/home/ui/services/add/manual/AddServiceManualScreen.kt b/feature/home/src/main/java/com/twofasapp/feature/home/ui/services/add/manual/AddServiceManualScreen.kt index 1a0ce46f..f2945d7a 100644 --- a/feature/home/src/main/java/com/twofasapp/feature/home/ui/services/add/manual/AddServiceManualScreen.kt +++ b/feature/home/src/main/java/com/twofasapp/feature/home/ui/services/add/manual/AddServiceManualScreen.kt @@ -38,8 +38,8 @@ import androidx.compose.ui.text.input.KeyboardCapitalization import androidx.compose.ui.text.input.KeyboardType import androidx.compose.ui.unit.dp import androidx.lifecycle.compose.collectAsStateWithLifecycle -import com.twofasapp.data.services.domain.RecentlyAddedService import com.twofasapp.common.domain.Service +import com.twofasapp.data.services.domain.RecentlyAddedService import com.twofasapp.designsystem.TwIcons import com.twofasapp.designsystem.TwTheme import com.twofasapp.designsystem.common.TwButton @@ -47,7 +47,6 @@ import com.twofasapp.designsystem.common.TwDivider import com.twofasapp.designsystem.common.TwIconButton import com.twofasapp.designsystem.common.TwOutlinedTextField import com.twofasapp.designsystem.common.TwOutlinedTextFieldPassword -import com.twofasapp.designsystem.common.TwRadioButton import com.twofasapp.designsystem.common.TwTopAppBar import com.twofasapp.designsystem.dialog.InputDialog import com.twofasapp.designsystem.dialog.ListRadioDialog @@ -64,6 +63,7 @@ internal fun AddServiceManualScreen( ) { val uiState by viewModel.uiState.collectAsStateWithLifecycle() val context = LocalContext.current + var showAuthTypeDialog by remember { mutableStateOf(false) } var showAlgorithmDialog by remember { mutableStateOf(false) } var showRefreshTimeDialog by remember { mutableStateOf(false) } var showDigitsDialog by remember { mutableStateOf(false) } @@ -85,9 +85,9 @@ internal fun AddServiceManualScreen( } } - LaunchedEffect(Unit){ + LaunchedEffect(Unit) { awaitFrame() - focusRequester.requestFocus() +// focusRequester.requestFocus() } Column( @@ -145,7 +145,6 @@ internal fun AddServiceManualScreen( ) } } - } ) @@ -230,39 +229,27 @@ internal fun AddServiceManualScreen( Spacer(modifier = Modifier.height(16.dp)) Row( - modifier = Modifier.fillMaxWidth(), - horizontalArrangement = Arrangement.SpaceEvenly, + modifier = Modifier + .fillMaxWidth() + .clickable { showAuthTypeDialog = true } + .padding(horizontal = 24.dp, vertical = 16.dp), + verticalAlignment = Alignment.CenterVertically, + horizontalArrangement = Arrangement.SpaceBetween, ) { - Column(horizontalAlignment = Alignment.CenterHorizontally) { - Text( - text = "TOTP", - color = TwTheme.color.onSurfacePrimary, - style = TwTheme.typo.body1, - modifier = Modifier.padding(vertical = 4.dp), - ) - - TwRadioButton( - selected = uiState.authType == Service.AuthType.TOTP, - onClick = { viewModel.updateAuthType(Service.AuthType.TOTP) }, - ) - } - - Column(horizontalAlignment = Alignment.CenterHorizontally) { - Text( - text = "HOTP", - color = TwTheme.color.onSurfacePrimary, - style = TwTheme.typo.body1, - modifier = Modifier.padding(vertical = 4.dp), - ) + Text( + text = "Type", + color = TwTheme.color.onSurfacePrimary, + style = TwTheme.typo.body1, + ) - TwRadioButton( - selected = uiState.authType == Service.AuthType.HOTP, - onClick = { viewModel.updateAuthType(Service.AuthType.HOTP) }, - ) - } + Text( + text = uiState.authType.name, + color = TwTheme.color.onSurfaceSecondary, + style = TwTheme.typo.body3, + ) } - Spacer(modifier = Modifier.height(12.dp)) + TwDivider() Row( modifier = Modifier @@ -276,7 +263,7 @@ internal fun AddServiceManualScreen( ) { Text( text = TwLocale.strings.addManualAlgorithm, - color = TwTheme.color.onSurfacePrimary, + color = if (uiState.authType == Service.AuthType.TOTP) TwTheme.color.onSurfacePrimary else TwTheme.color.onSurfaceSecondary, style = TwTheme.typo.body1, ) @@ -290,18 +277,21 @@ internal fun AddServiceManualScreen( TwDivider() when (uiState.authType) { + Service.AuthType.STEAM, Service.AuthType.TOTP -> { Row( modifier = Modifier .fillMaxWidth() - .clickable { showRefreshTimeDialog = true } + .clickable( + uiState.authType == Service.AuthType.TOTP + ) { showRefreshTimeDialog = true } .padding(horizontal = 24.dp, vertical = 16.dp), verticalAlignment = Alignment.CenterVertically, horizontalArrangement = Arrangement.SpaceBetween, ) { Text( text = TwLocale.strings.addManualRefreshTime, - color = TwTheme.color.onSurfacePrimary, + color = if (uiState.authType == Service.AuthType.TOTP) TwTheme.color.onSurfacePrimary else TwTheme.color.onSurfaceSecondary, style = TwTheme.typo.body1, ) @@ -342,14 +332,14 @@ internal fun AddServiceManualScreen( Row( modifier = Modifier .fillMaxWidth() - .clickable { showDigitsDialog = true } + .clickable(uiState.authType != Service.AuthType.STEAM) { showDigitsDialog = true } .padding(horizontal = 24.dp, vertical = 16.dp), verticalAlignment = Alignment.CenterVertically, horizontalArrangement = Arrangement.SpaceBetween, ) { Text( text = TwLocale.strings.addManualDigits, - color = TwTheme.color.onSurfacePrimary, + color = if (uiState.authType != Service.AuthType.STEAM) TwTheme.color.onSurfacePrimary else TwTheme.color.onSurfaceSecondary, style = TwTheme.typo.body1, ) @@ -380,24 +370,27 @@ internal fun AddServiceManualScreen( .padding(horizontal = 24.dp, vertical = 4.dp) ) - // Open guided here once done if (isKeyboardExpanded.value) { Spacer(modifier = Modifier.height(8.dp)) } else { Spacer(modifier = Modifier.height(24.dp)) } -// TwTextButton( -// text = TwLocale.strings.addManualHelpCta, onClick = { }, modifier = Modifier -// .fillMaxWidth() -// .padding(horizontal = 24.dp, vertical = 4.dp) -// ) + + if (showAuthTypeDialog) { + ListRadioDialog( + onDismissRequest = { showAuthTypeDialog = false }, + options = Service.AuthType.entries.map { it.name }, + selectedIndex = Service.AuthType.entries.indexOf(uiState.authType), + onOptionSelected = { index, _ -> viewModel.updateAuthType(Service.AuthType.entries[index]) } + ) + } if (showAlgorithmDialog) { ListRadioDialog( onDismissRequest = { showAlgorithmDialog = false }, - options = Service.Algorithm.values().map { it.name }, - selectedIndex = Service.Algorithm.values().indexOf(uiState.algorithm), - onOptionSelected = { index, _ -> viewModel.updateAlgorithm(Service.Algorithm.values()[index]) } + options = Service.Algorithm.entries.map { it.name }, + selectedIndex = Service.Algorithm.entries.indexOf(uiState.algorithm), + onOptionSelected = { index, _ -> viewModel.updateAlgorithm(Service.Algorithm.entries[index]) } ) } @@ -413,7 +406,7 @@ internal fun AddServiceManualScreen( if (showDigitsDialog) { ListRadioDialog( onDismissRequest = { showDigitsDialog = false }, - options = listOf("6", "7", "8"), + options = listOf("5", "6", "7", "8"), selectedOption = uiState.digits.toString(), onOptionSelected = { _, value -> viewModel.updateDigits(value.toInt()) } ) diff --git a/feature/home/src/main/java/com/twofasapp/feature/home/ui/services/add/manual/AddServiceManualViewModel.kt b/feature/home/src/main/java/com/twofasapp/feature/home/ui/services/add/manual/AddServiceManualViewModel.kt index 705a63e2..ede4aefd 100644 --- a/feature/home/src/main/java/com/twofasapp/feature/home/ui/services/add/manual/AddServiceManualViewModel.kt +++ b/feature/home/src/main/java/com/twofasapp/feature/home/ui/services/add/manual/AddServiceManualViewModel.kt @@ -1,14 +1,14 @@ package com.twofasapp.feature.home.ui.services.add.manual import androidx.lifecycle.ViewModel +import com.twofasapp.common.domain.BackupSyncStatus +import com.twofasapp.common.domain.Service import com.twofasapp.common.ktx.launchScoped import com.twofasapp.data.services.ServicesRepository import com.twofasapp.data.services.domain.RecentlyAddedService -import com.twofasapp.common.domain.Service -import com.twofasapp.common.domain.BackupSyncStatus +import com.twofasapp.locale.R import com.twofasapp.parsers.ServiceIcons import com.twofasapp.parsers.SupportedServices -import com.twofasapp.locale.R import kotlinx.coroutines.channels.BufferOverflow import kotlinx.coroutines.flow.MutableSharedFlow import kotlinx.coroutines.flow.MutableStateFlow @@ -51,8 +51,10 @@ internal class AddServiceManualViewModel( } } - servicesRepository.getManualGuideSelectedPrefill()?.let { updateName(it) } - servicesRepository.setManualGuideSelectedPrefill(null) + servicesRepository.getManualGuideSelectedPrefill()?.let { + updateName(it) + servicesRepository.setManualGuideSelectedPrefill(null) + } } fun updateAuthType(authType: Service.AuthType) { @@ -61,6 +63,8 @@ internal class AddServiceManualViewModel( it.copy( authType = authType, hotpCounter = 1, + digits = Service.DefaultDigits, + refreshTime = Service.DefaultPeriod, ) } @@ -71,6 +75,20 @@ internal class AddServiceManualViewModel( ) } + Service.AuthType.STEAM -> { + uiState.update { + it.copy( + authType = authType, + algorithm = Service.Algorithm.SHA1, + digits = 5, + refreshTime = Service.DefaultPeriod, + ) + } + + if (uiState.value.serviceName.isNullOrEmpty()) { + updateName("Steam") + } + } } } @@ -162,7 +180,7 @@ internal class AddServiceManualViewModel( info = state.additionalInfo, authType = state.authType, link = null, - issuer = null, + issuer = if (state.authType == Service.AuthType.STEAM) "Steam" else null, period = state.refreshTime, digits = state.digits, hotpCounter = state.hotpCounter, diff --git a/feature/widget/src/main/java/com/twofasapp/feature/widget/ui/widget/WidgetContent.kt b/feature/widget/src/main/java/com/twofasapp/feature/widget/ui/widget/WidgetContent.kt index 8d8b9c7f..1af0f1e0 100644 --- a/feature/widget/src/main/java/com/twofasapp/feature/widget/ui/widget/WidgetContent.kt +++ b/feature/widget/src/main/java/com/twofasapp/feature/widget/ui/widget/WidgetContent.kt @@ -177,6 +177,7 @@ private fun ServiceItem( Spacer(GlanceModifier.defaultWeight()) when (service.authType) { + Service.AuthType.STEAM, Service.AuthType.TOTP -> { Column( horizontalAlignment = Alignment.Horizontal.CenterHorizontally, diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1e2a40af..7c738726 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,14 +1,14 @@ [versions] -accompanist = "0.32.0" -agp = "8.2.0-beta06" +accompanist = "0.33.2-alpha" +agp = "8.2.0-rc02" cameraX = "1.3.0" coil = "2.4.0" commonmark = "0.21.0" -compose = "1.5.3" +compose = "1.6.0-alpha08" composeActivity = "1.8.0" composeCompiler = "1.5.3" core = "1.12.0" -firebase = "32.3.1" +firebase = "32.5.0" glance = "1.0.0" junit = "4.13.2" koin = "3.5.0" @@ -17,9 +17,9 @@ kotlin = "1.9.10" kotlinCoroutines = "1.7.3" kotlinKsp = "1.9.10-1.0.13" ktor = "2.3.4" -lifecycle = "2.7.0-alpha02" -material3 = "1.2.0-alpha09" -room = "2.5.2" +lifecycle = "2.7.0-beta01" +material3 = "1.2.0-alpha10" +room = "2.6.0" [libraries] accompanistNavigation = { module = "com.google.accompanist:accompanist-navigation-material", version.ref = "accompanist" } @@ -44,14 +44,14 @@ composeActivity = { module = "androidx.activity:activity-compose", version.ref = composeAnimation = { module = "androidx.compose.animation:animation", version.ref = "compose" } composeCompiler = { module = "androidx.compose.compiler:compiler", version.ref = "composeCompiler" } composeMaterial2 = { module = "androidx.compose.material:material", version.ref = "compose" } -composeNavigation = "androidx.navigation:navigation-compose:2.7.4" +composeNavigation = "androidx.navigation:navigation-compose:2.7.5" composeUi = { module = "androidx.compose.ui:ui", version.ref = "compose" } composeUiTooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" } composeUiUtil = { module = "androidx.compose.ui:ui-util", version.ref = "compose" } core = { module = "androidx.core:core-ktx", version.ref = "core" } coreSplash = "androidx.core:core-splashscreen:1.0.1" dataStore = "androidx.datastore:datastore-preferences:1.0.0" -desugar = "com.android.tools:desugar_jdk_libs:2.0.3" +desugar = "com.android.tools:desugar_jdk_libs:2.0.4" firebaseBom = { module = "com.google.firebase:firebase-bom", version.ref = "firebase" } firebaseCrashlytics = { module = "com.google.firebase:firebase-crashlytics-ktx" } firebaseMessaging = { module = "com.google.firebase:firebase-messaging-ktx" } From 3821e056eaa91521b3d175bec533b71a22e51604 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=C2=A0Koby=C5=82ko?= Date: Sun, 5 Nov 2023 22:48:50 +0100 Subject: [PATCH 02/14] Send empty FCM token for Browser Extension when Google Services not available --- .../twofasapp/data/browserext/BrowserExtRepositoryImpl.kt | 6 +++++- gradle/libs.versions.toml | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/data/browserext/src/main/java/com/twofasapp/data/browserext/BrowserExtRepositoryImpl.kt b/data/browserext/src/main/java/com/twofasapp/data/browserext/BrowserExtRepositoryImpl.kt index 5e58b46a..550582f1 100644 --- a/data/browserext/src/main/java/com/twofasapp/data/browserext/BrowserExtRepositoryImpl.kt +++ b/data/browserext/src/main/java/com/twofasapp/data/browserext/BrowserExtRepositoryImpl.kt @@ -113,7 +113,11 @@ internal class BrowserExtRepositoryImpl( } override suspend fun getFcmToken(): String { - return FirebaseMessaging.getInstance().token.await() + return try { + FirebaseMessaging.getInstance().token.await().orEmpty() + } catch (e: Exception) { + "" + } } override suspend fun deleteTokenRequest(requestId: String) { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7c738726..f7eadf74 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,10 +1,10 @@ [versions] -accompanist = "0.33.2-alpha" +accompanist = "0.32.0" agp = "8.2.0-rc02" cameraX = "1.3.0" coil = "2.4.0" commonmark = "0.21.0" -compose = "1.6.0-alpha08" +compose = "1.5.4" composeActivity = "1.8.0" composeCompiler = "1.5.3" core = "1.12.0" @@ -18,7 +18,7 @@ kotlinCoroutines = "1.7.3" kotlinKsp = "1.9.10-1.0.13" ktor = "2.3.4" lifecycle = "2.7.0-beta01" -material3 = "1.2.0-alpha10" +material3 = "1.2.0-alpha08" room = "2.6.0" [libraries] From 5c5b9c5115186521427b223c80048f970c9265b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=C2=A0Koby=C5=82ko?= Date: Sat, 11 Nov 2023 12:58:55 +0100 Subject: [PATCH 03/14] Update icons --- .../01c6a190-2de2-4711-b936-2957e8870234.png | Bin 0 -> 10070 bytes .../0d9fdf70-5d73-4b19-8567-4ef6fb56bbee.png | Bin 0 -> 2067 bytes .../1c7f313a-8373-47ad-912f-f1da36a0f19f.png | Bin 0 -> 8855 bytes .../1c9644b1-fc33-400e-a38e-cdb755256f21.png | Bin 0 -> 10271 bytes .../1d6c6e02-a2f9-4fb8-bd5d-fd501f4c650d.png | Bin 0 -> 2976 bytes .../1f69f5b2-11c5-47e3-9910-78c3a2da794f.png | Bin 0 -> 7203 bytes .../2525526e-d2dd-4553-ad55-c1c5d358f8a8.png | Bin 0 -> 8269 bytes .../2559f9be-763f-4558-b5e6-b89ee4ea44d8.png | Bin 0 -> 1400 bytes .../292af08e-fbf9-4847-8635-1a33f1e652c0.png | Bin 0 -> 1275 bytes .../3133bbe2-1604-4f4f-998b-0bbe5cdc01a9.png | Bin 0 -> 4527 bytes .../34049cb1-c970-4fd7-9be4-9d713d0ed2c5.png | Bin 0 -> 5101 bytes .../3bf330b1-05c2-407b-8272-1ef0084465b6.png | Bin 0 -> 8775 bytes .../3c24d083-ca28-422a-9bc3-d413db80c4fa.png | Bin 0 -> 1577 bytes .../3e0af4e0-7050-4ba6-bafa-e5ec20a49b81.png | Bin 0 -> 4410 bytes .../414a1176-2d11-4dec-a82a-50ca47390271.png | Bin 0 -> 1276 bytes .../4332ab89-25d6-4efb-be0b-cf70d6c3bc19.png | Bin 0 -> 7771 bytes .../4c8bf28a-f8b8-4eac-8b26-1c1549fb3ace.png | Bin 0 -> 3165 bytes .../5380b8c3-f224-4278-af4d-6b4a19d869a1.png | Bin 0 -> 2247 bytes .../5f313a47-1484-439f-81b1-a196b66b6e7f.png | Bin 0 -> 2453 bytes .../60453b61-5899-4234-9145-1f4ff35bc681.png | Bin 0 -> 4095 bytes .../68528055-b4be-49cc-8e49-f46ddb02449d.png | Bin 0 -> 2203 bytes .../6aa09296-0ed4-486f-859e-75786ff68eaa.png | Bin 0 -> 29280 bytes .../6d01c39f-11df-427e-9544-b0ee2fd88e7c.png | Bin 0 -> 899 bytes .../6dd4f41e-f6cd-4c14-a2c8-38905936ae79.png | Bin 0 -> 918 bytes .../7180aa0a-ec10-4cfa-959f-04af4163d5e3.png | Bin 0 -> 1057 bytes .../72c29283-d95b-4796-80cc-5c0ed688c96b.png | Bin 0 -> 13289 bytes .../7dcf4941-c203-481f-9423-5cbed8f4aa24.png | Bin 0 -> 6399 bytes .../88215495-ab22-4533-b96d-5b319de880db.png | Bin 0 -> 7706 bytes .../8ae02378-cb96-4809-ac5c-309b06959c76.png | Bin 0 -> 1554 bytes .../92405e18-7016-4e27-aa20-04a42b056736.png | Bin 0 -> 1552 bytes .../95853196-53df-47b8-8e8c-bedcf0fbd833.png | Bin 0 -> 5283 bytes .../97232280-5e6e-450f-a5f7-d6c785b9c1b0.png | Bin 0 -> 5344 bytes .../99dc6207-2a6a-4d75-b4f6-fae9ee81639c.png | Bin 0 -> 2499 bytes .../9c102fda-7a8a-4561-b098-ebd654d4260e.png | Bin 0 -> 4039 bytes .../9ef44968-ff95-4e43-a1cf-de9a65d980e2.png | Bin 0 -> 1394 bytes .../a4a5df6e-6575-4b6e-99a2-7dca8b418c01.png | Bin 0 -> 18739 bytes .../a647976c-f36e-4966-887c-82c9b4424171.png | Bin 0 -> 17439 bytes .../a821821b-5380-42b1-ba5a-fcd133f54751.png | Bin 0 -> 1993 bytes .../aa8ddfda-3d64-497b-8c3e-d4d57ea29276.png | Bin 0 -> 1684 bytes .../ab0af82b-0040-4216-9340-2d92fbb771bd.png | Bin 0 -> 3070 bytes .../ad3d5d3a-e703-4c32-b5ff-516c5648dd48.png | Bin 0 -> 1886 bytes .../be1ef863-6cbc-481f-bf45-77a17ff39391.png | Bin 0 -> 558 bytes .../c47431c3-bed9-4fa3-86ed-619c9cb0e250.png | Bin 0 -> 2966 bytes .../c84bb356-8cef-4c56-b2b6-dcc4e92a7ce9.png | Bin 0 -> 2602 bytes .../cb386765-41b5-411c-a4f7-1a8dac1ddaeb.png | Bin 0 -> 8476 bytes .../cf938f40-b4be-41f1-aa71-1dcf92b7ae66.png | Bin 0 -> 4985 bytes .../d3317cf5-75f6-4623-b112-c1cc9174a667.png | Bin 0 -> 8411 bytes .../d8467698-1c5b-43bd-a1a9-38ea6b2af66a.png | Bin 0 -> 2480 bytes .../da2a3ef2-0514-41e0-ac7c-56ed10879b7a.png | Bin 0 -> 15114 bytes .../dbabcbdd-a6f8-413c-a3bf-d8574659584d.png | Bin 0 -> 3177 bytes .../e077c716-9f21-4b4a-9848-75c8c0d10b01.png | Bin 0 -> 13221 bytes .../e2891051-310f-487b-839d-7ed83fbcbfc9.png | Bin 0 -> 9370 bytes .../e2d55d9a-03be-4d48-84e1-9553b909bc56.png | Bin 0 -> 19068 bytes .../e6448330-d612-47c3-b4e6-bb16e73abf64.png | Bin 0 -> 3089 bytes .../e81e852f-ba65-4bda-91f7-fe3eead097a2.png | Bin 0 -> 5972 bytes .../f13050b1-a66c-42e8-be66-47a68d5f2318.png | Bin 0 -> 3598 bytes .../f5f54ec9-cdfe-41a5-aafe-bad15e089830.png | Bin 0 -> 3364 bytes .../f8275185-3ad3-470b-bbbb-37eeb2881db6.png | Bin 0 -> 9286 bytes parsers/src/main/assets/services.json | 2 +- 59 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 parsers/src/main/assets/icons/01c6a190-2de2-4711-b936-2957e8870234.png create mode 100644 parsers/src/main/assets/icons/0d9fdf70-5d73-4b19-8567-4ef6fb56bbee.png create mode 100644 parsers/src/main/assets/icons/1c7f313a-8373-47ad-912f-f1da36a0f19f.png create mode 100644 parsers/src/main/assets/icons/1c9644b1-fc33-400e-a38e-cdb755256f21.png create mode 100644 parsers/src/main/assets/icons/1d6c6e02-a2f9-4fb8-bd5d-fd501f4c650d.png create mode 100644 parsers/src/main/assets/icons/1f69f5b2-11c5-47e3-9910-78c3a2da794f.png create mode 100644 parsers/src/main/assets/icons/2525526e-d2dd-4553-ad55-c1c5d358f8a8.png create mode 100644 parsers/src/main/assets/icons/2559f9be-763f-4558-b5e6-b89ee4ea44d8.png create mode 100644 parsers/src/main/assets/icons/292af08e-fbf9-4847-8635-1a33f1e652c0.png create mode 100644 parsers/src/main/assets/icons/3133bbe2-1604-4f4f-998b-0bbe5cdc01a9.png create mode 100644 parsers/src/main/assets/icons/34049cb1-c970-4fd7-9be4-9d713d0ed2c5.png create mode 100644 parsers/src/main/assets/icons/3bf330b1-05c2-407b-8272-1ef0084465b6.png create mode 100644 parsers/src/main/assets/icons/3c24d083-ca28-422a-9bc3-d413db80c4fa.png create mode 100644 parsers/src/main/assets/icons/3e0af4e0-7050-4ba6-bafa-e5ec20a49b81.png create mode 100644 parsers/src/main/assets/icons/414a1176-2d11-4dec-a82a-50ca47390271.png create mode 100644 parsers/src/main/assets/icons/4332ab89-25d6-4efb-be0b-cf70d6c3bc19.png create mode 100644 parsers/src/main/assets/icons/4c8bf28a-f8b8-4eac-8b26-1c1549fb3ace.png create mode 100644 parsers/src/main/assets/icons/5380b8c3-f224-4278-af4d-6b4a19d869a1.png create mode 100644 parsers/src/main/assets/icons/5f313a47-1484-439f-81b1-a196b66b6e7f.png create mode 100644 parsers/src/main/assets/icons/60453b61-5899-4234-9145-1f4ff35bc681.png create mode 100644 parsers/src/main/assets/icons/68528055-b4be-49cc-8e49-f46ddb02449d.png create mode 100644 parsers/src/main/assets/icons/6aa09296-0ed4-486f-859e-75786ff68eaa.png create mode 100644 parsers/src/main/assets/icons/6d01c39f-11df-427e-9544-b0ee2fd88e7c.png create mode 100644 parsers/src/main/assets/icons/6dd4f41e-f6cd-4c14-a2c8-38905936ae79.png create mode 100644 parsers/src/main/assets/icons/7180aa0a-ec10-4cfa-959f-04af4163d5e3.png create mode 100644 parsers/src/main/assets/icons/72c29283-d95b-4796-80cc-5c0ed688c96b.png create mode 100644 parsers/src/main/assets/icons/7dcf4941-c203-481f-9423-5cbed8f4aa24.png create mode 100644 parsers/src/main/assets/icons/88215495-ab22-4533-b96d-5b319de880db.png create mode 100644 parsers/src/main/assets/icons/8ae02378-cb96-4809-ac5c-309b06959c76.png create mode 100644 parsers/src/main/assets/icons/92405e18-7016-4e27-aa20-04a42b056736.png create mode 100644 parsers/src/main/assets/icons/95853196-53df-47b8-8e8c-bedcf0fbd833.png create mode 100644 parsers/src/main/assets/icons/97232280-5e6e-450f-a5f7-d6c785b9c1b0.png create mode 100644 parsers/src/main/assets/icons/99dc6207-2a6a-4d75-b4f6-fae9ee81639c.png create mode 100644 parsers/src/main/assets/icons/9c102fda-7a8a-4561-b098-ebd654d4260e.png create mode 100644 parsers/src/main/assets/icons/9ef44968-ff95-4e43-a1cf-de9a65d980e2.png create mode 100644 parsers/src/main/assets/icons/a4a5df6e-6575-4b6e-99a2-7dca8b418c01.png create mode 100644 parsers/src/main/assets/icons/a647976c-f36e-4966-887c-82c9b4424171.png create mode 100644 parsers/src/main/assets/icons/a821821b-5380-42b1-ba5a-fcd133f54751.png create mode 100644 parsers/src/main/assets/icons/aa8ddfda-3d64-497b-8c3e-d4d57ea29276.png create mode 100644 parsers/src/main/assets/icons/ab0af82b-0040-4216-9340-2d92fbb771bd.png create mode 100644 parsers/src/main/assets/icons/ad3d5d3a-e703-4c32-b5ff-516c5648dd48.png create mode 100644 parsers/src/main/assets/icons/be1ef863-6cbc-481f-bf45-77a17ff39391.png create mode 100644 parsers/src/main/assets/icons/c47431c3-bed9-4fa3-86ed-619c9cb0e250.png create mode 100644 parsers/src/main/assets/icons/c84bb356-8cef-4c56-b2b6-dcc4e92a7ce9.png create mode 100644 parsers/src/main/assets/icons/cb386765-41b5-411c-a4f7-1a8dac1ddaeb.png create mode 100644 parsers/src/main/assets/icons/cf938f40-b4be-41f1-aa71-1dcf92b7ae66.png create mode 100644 parsers/src/main/assets/icons/d3317cf5-75f6-4623-b112-c1cc9174a667.png create mode 100644 parsers/src/main/assets/icons/d8467698-1c5b-43bd-a1a9-38ea6b2af66a.png create mode 100644 parsers/src/main/assets/icons/da2a3ef2-0514-41e0-ac7c-56ed10879b7a.png create mode 100644 parsers/src/main/assets/icons/dbabcbdd-a6f8-413c-a3bf-d8574659584d.png create mode 100644 parsers/src/main/assets/icons/e077c716-9f21-4b4a-9848-75c8c0d10b01.png create mode 100644 parsers/src/main/assets/icons/e2891051-310f-487b-839d-7ed83fbcbfc9.png create mode 100644 parsers/src/main/assets/icons/e2d55d9a-03be-4d48-84e1-9553b909bc56.png create mode 100644 parsers/src/main/assets/icons/e6448330-d612-47c3-b4e6-bb16e73abf64.png create mode 100644 parsers/src/main/assets/icons/e81e852f-ba65-4bda-91f7-fe3eead097a2.png create mode 100644 parsers/src/main/assets/icons/f13050b1-a66c-42e8-be66-47a68d5f2318.png create mode 100644 parsers/src/main/assets/icons/f5f54ec9-cdfe-41a5-aafe-bad15e089830.png create mode 100644 parsers/src/main/assets/icons/f8275185-3ad3-470b-bbbb-37eeb2881db6.png diff --git a/parsers/src/main/assets/icons/01c6a190-2de2-4711-b936-2957e8870234.png b/parsers/src/main/assets/icons/01c6a190-2de2-4711-b936-2957e8870234.png new file mode 100644 index 0000000000000000000000000000000000000000..51340b2f45e32b97edb15bb45ac982411f8c0291 GIT binary patch literal 10070 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 Z|35r}JA1t#g604K002ovPDHLkV1hP~M+N`@ literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/1c9644b1-fc33-400e-a38e-cdb755256f21.png b/parsers/src/main/assets/icons/1c9644b1-fc33-400e-a38e-cdb755256f21.png new file mode 100644 index 0000000000000000000000000000000000000000..04eac9d25f0c5b6e50028b26f655e47cafd146f6 GIT binary patch literal 10271 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 UHul9U;It1SS=gIjHuZ`7FW$JJ(f|Me literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/2525526e-d2dd-4553-ad55-c1c5d358f8a8.png b/parsers/src/main/assets/icons/2525526e-d2dd-4553-ad55-c1c5d358f8a8.png new file mode 100644 index 0000000000000000000000000000000000000000..0a5282ab2ae4686228b00f853912ba785b16fdf9 GIT binary patch literal 8269 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 Hnuh)#hu8av literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/2559f9be-763f-4558-b5e6-b89ee4ea44d8.png b/parsers/src/main/assets/icons/2559f9be-763f-4558-b5e6-b89ee4ea44d8.png new file mode 100644 index 0000000000000000000000000000000000000000..85c684e9279ddca19962a57750351a0f03dbe113 GIT binary patch literal 1400 zcmbu9`8yK~0LSNS#@rEmd63C5XE_pcY~*T*dEJq`PdQ?Rttd1~5|T4lZ| zn_z2Uv>}OQ9-UY(fQ`l+lD+hQfZB5L ziH+_2T-rBCN**G-sQ%&3GB({8aIpJXQ`^srQZ|?DhU96lT7iNRsg<)M5Z{2ym`{N7 zfg)4vEWL$R4?*>n&J@Ig)0vHxeAiw3`Q#Y(*=lMt;x7{dLavY@n#%lwk60Fg_eC$& zimV02p`b>|L4%==-L4wmSza=w#Lb}_J>XTS^?OYR-o;!}@w+Q5=JP6t`bsrV;RTKr z#t~)_G+F=mlIr~DP1%ta?IySRZzsar0%FC4W$;sFNlM3vqUP&8^5*gJ$dnZMPH&2;EA;WKBatv5HDXk~5tJ6Q(z&BRJ+b`R<~ zd`EA|Vh6<0~ET&AYvuJ;84~AkUWm2Xt?!%rEpE|kr z(m75heI;F`im_=2_vsoiTJIth0W8%Qs1LmbvR;8abCoB_mN8P4*pRYiV3cm+L-ep44nI;9B(;Ws>IS>~m|3QtVp_8qZCj{G+HYKR} zo8a&v;*WAH5+t%A{SggFs*2)-B3(g8B(TVSVPki!(B5gcab-KQsKcTMTA{30^cb$$ z-*{UGo8~+zuhCE(_Nd)FfteaCb(9e0p{PIK*cnA_G5*N-#46h=2Xkgg-br2ubRs=I)su5oI<+(h|us!-QLDMez!44|9JG=BsDjKpvxUCok=Pd^l}5p3cklTZHJ2S=*Mz2eb`aX$Ep2 zK;!mYs!BG3GL(d%xRA}4<_IJiEG2pbR=Y}R*b;pG^|~v;-hX(@@#vSrqS$;)yZx!r rf2IuQ-&w><2y*F(aM{~pt9&_`Vg>o>uPLnuw+C={K_Oe5!}0$Dp_!V8 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/292af08e-fbf9-4847-8635-1a33f1e652c0.png b/parsers/src/main/assets/icons/292af08e-fbf9-4847-8635-1a33f1e652c0.png new file mode 100644 index 0000000000000000000000000000000000000000..0e20f90f4d3235d62fb1266831d4aefe35fa1e3d GIT binary patch literal 1275 zcmeAS@N?(olHy`uVBq!ia0vp^6(G#P3?%t>9eV(zW(N3#xVjhkIIq8HxbF?a)T=-e zi1e1aVPPVY9Dp{j%&SFLtl4Vqjo? zDL@BZJS0<2UM8?v$I>;Q9S^Xc+tCD*j~6AE9B3zkcZy zZSK4sH#Ig&<4&mIIi}!}wK1#z-aK~L>cQ%(%pvo3PM142D`C2c{cqLj6U2V(zdA9# zY3KDC6XwZ6K~v1bxqU7kRtmfS*^qt4vW&Xbt8^}DD)&jTNOSKUin?^Un1@5Z$1cf+gSwxsNP>t4Qk_JgliPFZ|5?6@ACRQ*-5IOE?Z5%pVj=LMsq zaviEVz!dN&Dlo3X4}3knEr0A&w-lBtE!$| zz7%eHEG>cQx!|i$j>jK9;8-pfY@n-KCMS3=yJ9(O??%HJ{r2l7C5m!OKbA?*`*2Zd zZtU&9{pa&rPcarp&kb=rykuIbujN4l*NOF;e=*$i{bXmTKO;Z+h4f7Ga%EZjPtEI> z9yQDR{FLd*;-puaOkvwrU5R=6VAM)?+6OnYq7)h7+dy? zy0)uJZhGWh)i`};=0g+1fN0-EN2c%krDy#tI`r#`_pcfrURi8yW&3<$%!7MRXH@T1 zm;Y*f@LpP2%EC^zNtaGBm6x%GKRY2Fy_RkHHYe9_+ZSC5YMi+?K#_AzSi{e?0gbY@ z(-#?SSU$i1XHW>!w7k}?Kij)EMsb*(cmFIR+OXH=XGV@G|GAm{%fg%u?r=^0*S{}i zHS+=1&litmvHh_EMvQq@-mBU_QN@m#u5Yb>1V!0pEz9_S@Az*~Z8%tMf5|?wUy@VN TulP5xpkVNH^>bP0l+XkKtEhp? literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/3133bbe2-1604-4f4f-998b-0bbe5cdc01a9.png b/parsers/src/main/assets/icons/3133bbe2-1604-4f4f-998b-0bbe5cdc01a9.png new file mode 100644 index 0000000000000000000000000000000000000000..4859617e18f411f88378e4bc98cb2dcbb9bf2441 GIT binary patch literal 4527 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 F{{Y5&eyRWf literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/3bf330b1-05c2-407b-8272-1ef0084465b6.png b/parsers/src/main/assets/icons/3bf330b1-05c2-407b-8272-1ef0084465b6.png new file mode 100644 index 0000000000000000000000000000000000000000..38ea74fd768d926c8e0dd9f881cab35da750fcd3 GIT binary patch literal 8775 zcma)hXIN9)wl>6|G?Cs>2p}NRdsjM0?_D~?00{{Q(yMfkj({LY6X{6rNC&CXdq;W? zoiDo2-us+y-*cb)V`kR?b$99z^?7-hiT%E^q@)!xnlA?zv!`fXPj z_50Ut4iN2ch!aE%q^GP#D+PsH(eknLv2%jNv1vu&me#@=(z5?jMy=hYe{fgasT7a{@yhXn)x> zGlx1miGe^UIqjd3*~9)a?tu7L_NY2=xSGK@xY#*4{v8ang*rhIw$T5g@|XA@idL@R zzjOExH@_tRfIES${|o$=xcwUvVt{qI_!ya`Let<0RPq*0d`h?|p}hmDJqjfYE%lSi0~UznShm6MB; z^DnS6)Dmp{=6?hW3iAq~z{3BIM$yC4%*pKkg8!@F!oSde1cjpJ{~FQXI#N(OC>#|W zDhHn5!Tv2$kdjh^L#@GfC>cUSPLftZMv9+Hh@YR0o1N=7_Se1%tASmu?DV9;_EruE z6vxCsT-<-8{kK&Aze#_4*F-fJ%Ecchf9ab*%N`~@cq-GW=o&>aIZD3JQgj(O;o@%Q`y7r9P zi`%;Kha=H#=ia8XeLEB84o|nRb@l5t;*;>k{PZXjs?FDl?qt_|uB{!m)7t*{STtXq z%^-%dt+1P+{)41Du-4(D^XHlJ9&x4z_$GWY_dYhzmZN}a}hQO#Z2@58# zk3d7iA^LTpqa~-3qoGkLDo8)qa!uX&0D)d!9&8lXyE3$kh^%Q!%&RMmw7g`qffQc>AQ&2%^T!YRK@t5oSNyC zcsd%xyE9$1D0J;-Y$fB=%8l(kN5WP(D;Ok z^_|V2M3pf5gt(JKhg zk-n`-<4RIuZK)`nw1m($L~Qd=y~8Gns=0AunK=P@>1!%pFJj|+E&h@(L5?5r5-(+oNeT}X!CM2=>ki^CKCO88MqHI6@V4w7qY$kE>lK0 zv3Dc}_zLjGd)l)``9MBJWr3-=D8I5&m0L`R{+E45ow^G`9p|S!Z2Rc?X6D+{5_e9u zD=KDHkZoTvPA@&meQ27;eK17vt0t0~-kbRCu%Wc)MHi-vJ6PPYVq!rXrqI2`xGnV2-Yk>0-Vcc8g22 z=>LF&SfkzA8nW(t_9eg7_+^w+oxQ5S-W(%rmwIi1c4*h($7*k|W-k7Cu@nO!2P~%b z+~)Yuw{3WvS?8&H62U0cZfSwTCo#<0Ajg)ndKR;otiqNcGXq`Mg1%qB{2jZlNhs&t zyO?Q0QY&YU8ynAz8pA0m{nWY$Jq{0Dns1d;Ka!IQ@~c8iG0Cu4dLH}`aydC=&m z7oHS!xGfDi=Y4)|SdCwpje)Fn?iwBrsl?98%KD6Ta<&{$SBu$rgtxh&uH}NXB)oXh z3@sfFdHNtSd$IudnrkTbBtE_?`^C_Bac70~eS^`Jh|)ayfc-$60OW4_*}l||_ORHD z&D~B)44Og|$Cn>&w-LH7wK)qD9Ibz<`nsUk^ssY#5>q*a6EXZ;kh+?btyRc{J)=Xm z)&11;p)gRuLCJEU4)CIv=ou$_Ntk0M9fk~MUcMy1!162m_EJ0jIk#`^l7b(qsVE1x zwnCnoC~Y*|;5cs*gNT!vV+~3k)4#=d%|ifqfrVIGI9nofEHVtT=m^hDd8c~3`Rc3v z^t+RjfY*B+6Ae_3m#5OM2%LnRYY@Mv0hWiJ7Ex9}hpgy;sDGn}Q1ZCpk0l)CuT_bI zzIOs%ded-mX}>0dX?2GB5qr+C8W~p@on7 zY^$(iS6HEOSfv$C&(Eh?TsVwlJr`F?ujvg9U}qjkW22g+jgef`#s&uB;P7?sywk&} zJPL{nZVz*;s$4ot4R=PgoOjVzS31a$JQlG^uv|$auR(dRSeB)Jk+5=7maZMp8~CY) zqOi0SU;D(auApao$a!TrTX3wPyI@v3v}-y(fNiP5aC>F+WGqK=OzO3dNG z>zJ(r3X6msAAihL2Ywv?v7rAIQ|wL(%}6fMY&Ai7IT3r7k!k|LIZ1UTY3JMfI&)gd zNiDS3_VzR4FrVi0Bk60eI5V_`yrPae7@c+szj`HnH48kTE!a03%k*=;E-@oY;<4M& z<2JjoFJBIx8p*fkD92fvmP5|rAXZ&-qozo5%AS-$;V~VVnq_zf+sjDA$>vv8F8}9l zUMH+>^Ij=~tG(Y^{rD84W;W%dI`iBqa+*PujQ$bH`+TvI? zw#GljC+41bStXy%d#7(TT`@)*R_z+!E6^@EKvLY5S|4ycskn{$R2FkM`h}^eRwq=X zGtzOVQ{u75&*7xRph9k3zx95{^5O?_%J<_9t2$b5mX|#?==_wGlf17i8e`5j8P6vy zl}7MUy=YLwy`vc};!<6USTCtQm>nW)rxDMi{W1G})cb-dyrm`e`*%{32>5cY1kKBt zfc1_-!{gnVkmww}*2U(@nQ(n$<+R~DqUZW)8ai)n!OyMn;}7;GrSiT&vPuqA<7uDv z!1d@%H8+-Kj@^7ygv;+GD2@DV!wO3tx$)HTxuuBA^k{wj-|RH zW2$cwS;bf$SJdb-A5nN|Rxl3V(=)d(0I3(lSovYC)>$?Wd>C z5Yvwu(c(aZlM3^DUN3*Fre=T9p>v+CETpkt+UH_n`A*A^-#I<#qhr$VW45x=UW4_N z5igzNi{=-8hc+?yF><=t3dc`eL2s+ii*FUrIwA^s2Hp85G;zj7 zf(>8qLiH?7Pj|xCAzq{Mjy3sk(mK15$D%J1LC4!n+bB*UI&guePh^^TyT9`FE10tR zgIg>&tgN)`XG3jnt`;qRVx~+8h0Ro}+}7<8HpYzIEfAv1k`Cj0;a95t6>a8dU9;4l zio3T`fWSra5tDgx0M9mTm7#?75!Q^xQc-d4MK@D4UQj~`Ry42L*N zLxJCq2=5+=s(6Tdi(fqh)uv`{M-dxmsoRhDPStQiz2c(&)nl`-F@!z3g_%z0hl>^# zehnPcA7$UEeiNmcJ=wq3GcZjtmWCaw~N?hb!t7QaXqr+J(Hu0luN03was= zp>!pOD+fBVk_)I{UcF#70EgJ~LXJzhoIh#ceh}?mXz@=9oMHOL8En+>>b+PGP+vpx z4TQDm;(|dvxo_yn6ZvfkRys_U_}4+K5Z~_?7j~)@GJ+rC3SVVrTKPAWyyJaLE@62W zaJ)D9Z8l20=Zk#^xxaq^yKz}zW-q_p$E?qvY4w>TgBO!3qkYM2UdoUyND1aDf2yAh zDlc*Q0K0-B|c{wJdPCAy4zE2iW#H#<;@CvA4IW(&7f-c*K<)f&z2Fn<58 ze~)jN(IgE$AYM_(F4+iR5y;s)URZAJ5To76B09N$dC+u1N|*8@xj;R%QDBZ1zB84S zDEdG`>1VC8eh|Y*OHpO$6B&j;G8;CSS1tZ&96ztx+7TU*F#Iz}?$ZwCL{qx2nEPSu zw`^i58k(7z8bsfV;pGg=lUMck@7E;823V#~w;e7Wyj7lbhoN_-v@U)utB8-0dn6x|@rE%?|+ zM0a3fe`-okOTP+uX2TReUA3Gn@W8VtZbkj^NE&xSg=47R)pUxhmbD0?{E z^*_G7LCy#{1&4l5IS@U>jHKWhRD2<)bT`QtEgCY8nI_Wt;m$ow7w3qsOeN`b;rPQs z!yyQc`#?-rUNU`j+q&6^G#Q{X@1d;aJ)GhKK#D*(^@zJ$B9_MG-FFk;+nTe2q7yi#7#pLWhhHI zPAIvM$`jO+o8AuwNf?7>XYgRq9T53V*g4*b9?dB2p1lvJ=IrQ}>=zlps2#Sy3NJ`h;+JD|^>)p3*BV ze}{&{Maat8?kMf^{DqFXu#ThOBTvh%mdbSZAN$Pt1uH%?Kz?OgNbgU=_e=WqNh~j~ zU+LIGD_gPY@-8-Y%lpv>-kQpF1}{#zR)#QK$H4jltQcZqz(|_jpWGC5jC>r8g4Cv6 zHX;!3qGu@vFGj;SNIjl#MmH~h%bO5;#7)8V^9Wx z@L&amA6sq(6Z&l?nmn~_bHL3}_}D;02oU-9I-6yCzl7b!qSfq2G<~~*XcS#mmicrg zm!=cTmnq)JkclSOn3O6r46Er%l2P{{@iVmLixaL``kzmwXs+MDs|;AQpd1+>_tImx z&t9jKTp!Z5gVc}#5vq+~MniBM%LFr;fb_&(HPo@XU8-!=5Y| zHw6?e>zDeKeNPEm4OgKbw=wH)Rh+?%qUrY58J!rQAYUgo3D$(|~xs=HyH$43ys?(U@jcu~V(QVFdZY6e z=JOcsc18UU%pztj7cFs>l}o7t#d%`ugP%2lc#k@$sr&RN1T}(1bHBfpl#Y7H=&{fo z?8$@^aqPO!&%b0`!`X5!9Apd|1Fh08B1hD z5b)4_pdv*eWP4r$G@3;&Xx*RXbnSLbz>3q>RahNk=T9t`&L0tTp97(etd(yFI5*aUBhNgQ5i;M$Q(tsmM5b`)Ijo=a>c1!}D!|c*- z)2&E`W-hklIYS_Jy|Qu~ufX)~P^y#N_Uq-7^L>6k^@76C@6UXi?>*xD3K>sILa>{p z1Z!*-0I|!;bJehiCc77?p!mC+PoxPd<*QN-ccvXVjNJxEJD?*osAtnkPZ3Z=MBR~} z8NRr4Xv@oM?2)}k43XI zkJ$S?$;>lk2SQ1ti(jH>B9rIN+7p;VH|tRUMMwRzVQo%q4T2|zEe%!^{z`{#a9{J zJ1Tbx+u3A|Gq6fuHj{?L2e@PoVz^~V-}RqyT_w5jIxWwv>?R5|!~eP2dW-aa$?Is5 zil#)vN~s3(b*6*8=$?J%)0losZAGr-br7c0hvY#$P-1-$Y-xrR6YOp<=TysY;D2-q zU1>pkNQc=;SPpGExEmct_W9;w9JMPK@9U&KFCvNTAQt=U5>;-!GSX-o!FWOVIcWQr z9?sA1sqM#IztcFTdRsB4GXfL4;*1{<4RbkpatxA<#t!7h%_QUC{^~9u1#Ji%8c#gg z1x#jQ4c!qH{?u?SD@w+QxqT;%&1q4E4uSiMBG7sWRZpb549xzye>j9ML#T(wsDV27q|kd9rlzHCy>FN@%57L? z>)*#zKzM3z7XvKFrTf!uY>^ItOQeNSjm8i1D_dZFF&2TJJ0QsS(=&;8i`S0aazudQ zINXj#ARX`tF$i`g7`^M@*BPl^YlSnX{pB523RG2CDRyJ@3sB@ zENeNt-U3zX*t0G5%dcTFljPS5^VdSS9&q!8P3A0IR%M&=<{#n zCMBt_h7GHY`!#poNv6i`I~xc4 zYd(1Nu!wL6c#1X;^m-P}&&n6K6bUAzv2oy?24-fjL7Fj zkmw>TYW-ujymT;ykSswH!(fIgbNY|E%_>3omoW`YpPNxHCe{}NfPYZbfH8SE<|j8ND2oZIc66m;7zjrGvz z+JrKGM3HQ#oh$}bN@X|>3{)=YwQV_?;_MS+Bz?qWm0>n>pBV@%;ks1CKI4*;k_ zLY@N`?&kaGH!BuY)&^1&oo6Z%P*-%H*eDp8VZ@x$w~5CIg90`Z7Rd1XWF`W(*2$U% zn9!LPS_!Xl^hRB-xCCB5-6@mG0gKouJtlka8t3DHkqAsBmUKd+QT)tK%N&4-g*jjg z9oYJz-O`kvgLmvfM`~EQ|=7t7mef)E! zHi;*}8}evI7rM literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/3c24d083-ca28-422a-9bc3-d413db80c4fa.png b/parsers/src/main/assets/icons/3c24d083-ca28-422a-9bc3-d413db80c4fa.png new file mode 100644 index 0000000000000000000000000000000000000000..fdf93502855e928d8a17342f5c9ca8e5018f253c GIT binary patch literal 1577 zcmZuxdpOg382@cEEJZG1Q6iV3u?{sUBx@`ol_SOar8So_TQg~PPSev<4JjsBq2dj0Fve9%5JEHTeKhHUTyx;fxzTfxxJn!xE>#e8YWt=(|u8L^STpBIFr5iPfq0;W%E<6=$0*-beb<3_7$4MC0MJw zTZX{%RN+wN^-PcOEu-T{uKBF>n>|(=KFMCRGB6OKCrTg%_NFS7nOnF-lTZHczVD1yYpu@GZTdtX8ru$vD&>YFVmHNs|#*7%`Xz zv5M9fdg%sCLxZV`sM&5669u#`Iw23Sp?hn;+Q+raRL zAHX%W67z4YsBiCKi>y;qYeDqt6iAC}D4?JXPRv3irrWB#7!Ss}UsFj7pWw^_A4MdW ziRsMLQ4>u;`PS6GP}B8Z+dDy_iHg{j$%3kn684bp7Jl3=rjp{}7GjMUTLNHTu2w{Z zfygGw_!t>#X%b@lR!R7GZRJt=+0qw1?naD_(#^~XG^XL=C1|+5uyPmDtBDTA(Q?vd z{-N+3E%BbN;{$`2daV(&2|=`8;b35I-_3njQKRlEBCWR&UIHKFVx2F9DhRQNBD_sM zQ5rmFnV++_VGRPMMA49f!pFXB$Kpo57tpA`VYg;VtJqXU0a2QTrsKlt&WtL!05j;6 zU9PvjrS=TU8|950F64HXrrD#vGHJbU2Ls(MDXDfr{~{q7;ves3s<5$&4~V?h$+ENP zi7icy0gfQJgb}HTqz2 z5jG2ym{9ivFx5PlstSv->bKh$o9rta`E)6Iy>_dr3Z>v`U#{NxbB^odamWKPU(ymf zUH5~i75CU<{pK!9V!RJ7E>^u$Xl*%qm)JP9lilqIa);dKbO-9)xJ8 z21nfC^Ui#K!T0UVv(N6#&d$#M^33jgeXs^4ISV-e0HD--sb+Y`e*XbPa_433q$cl( z%=4ug900gS_a6uVX&Foa0L`SPnzFH9#sMlY6*A-B8_LP`vP4tOHFn}@Ra&0^WbF)t z%Sgt8W5G;nCuK?8*tU_=8B& zgq6Mu!aIQw1X|zD!`*RB*v8?t(U4o&)t}o-7~E{gMKg90Q`U+s5+eH*7ZQw8idf{~ zmf3mmfo#*=2!&9-^F* zR;@}YNh+Y264SkDg1)714;+(kgIN8D8mRr0eDIt46?`moXDpqI(=tq{WW%aV=KWbR ztei_fZzOkKBW9{wc@5Cq0Z}$?u;;AvvB!;*I~;ZC^A?X}an3f?u19`#i~hZ|l1FyV zMjJqcD_Nt;qin0qtqb8;hEQLUE;_kt+jo>xNJ?1AT?Y%KM9tHjjVb4^t}do@3Py(* zQ-ilTkJU#&v$P*qf$lD;YUfBN+r_Cm577S_g+ys4230C z%3WSM@mnD4V}b~nYCNSP`A!Tj&W53ItH9ADH+J#l&t7E)ao|~tyjY8NDte+)sWLkC zftzd)^{zc-A0#bkSsy}-iS6ygo(c)f=QC>jsTMZ;_bZBE^s^{CDNi1|i!rnlyE9Fu zUXuKeG3(}=rSlFJ_Nj5{Hx(LOB`a!rWDn~u8yWh1N8bdcpVDyJ0zECw7W!x)E;;8B zz2d;Jg?zc(u(xmvq-Bfcydqf2cbP8fl#{Tecx}sOMy{o_)Li`bTu$m5El3~BTashb znpLIPRoYQ_k584esE%f?cL@|Ko-Sui@ltWN2pJJo@r8Fz553Nw*Ht$q1r_!8a?9KZ zN69J3KQs(}jeto`jO71diC1sb3?#J`I-dFyFrh`(81<$N;5tXP8$MBbKB3V=go*m7 zN-MUr@Zo01Xui#;&b#b|6Y%>JL#c-M=g66vL8x8hLZ9(UGo;t4p|j`nezTA`GHdi z;`zj;z&tebg68mC$RcF=tvHsgT+0|!n*cnV8`u>`K*Xp7(`{NCY-uFwbm-}qUfF5) zg|y35H@+d;VVOHgmWNR)Usg#KCS1g^GA32ntg9fn<$X?W44-AtKu`C>zkzPe!(pgK z!i;FocJTX)4I@6?ckn17;JW|93T`gCHt3sYorRkq}E!8D;QnfyF8Po`3|_L-Jd^v-U}2bm`mR>blFKhzYd=YGomE{ zM25+C3{9pi(B+p^_vV}@MiX~@Y)eq+scRqOMtre{_x*fXC6E_GXxXtg&i`zuxdjy( zlKIf3>F`6Mwq!PZFM(K{#{!7w?OMAZqjD(D{hX*Q@zoPWYGLVrIs-H#0pd38Mw=Aw zKGg?fsJks7-md*(<1f$vUH}c1G0Fq|>Brp1deu$BMqu!7mF?+F0v*)`HkpE_?fN)_ zHLXUz(+ums6J#7S`lNQ2%DJUZNv?+tV=|Rb5;S*9!}Do>`P04HJEihWDLV{kTW-po28|D_R5FQ0>28K%_}&~aF#LDhW}1BP=6*Oxn#Xmb6l1AJ^!Y(qE(?+X%fqev ze$^K!A4y+7B#(kJ6H^X4dIbO~>0}ClGXb0Z8%nwON=)Pjc!uSzrVUU<_?Z3{|Gcgn z_ZS@bOhPNg;g9(C3!_R;XTe5gsI_hCTg$wLklk8e4z&h~b;feP9)Ha&SSxsQ0fg~x zf?zkkjFwkSEu0^KDtJYBnvBqo#}-M5p{Jyj>#Rpcn?9fMb{W*c92cmSuBx33oUSM+AaV1oJ|y&s?so zD!}M1pft3Rd6_hW_<6!OK&ShrH6Y8;awv{=#7BX$A=qT-muo3=XD(|S)$@I!hb^)` zSD6C7z6$r5%E-qVT!1N zfX3-H7k~uj-qHs(VPm`*tf@xhzV5ghVq7f5?F1{awmBYHiF9WITG$0uc$0`;dVFer z7HFT$X13xDTK{Kl+kPb>IAOQA^lQSx^)grV*Mz>-*)niply5bn3ftOimOA0u`?@x! zw}i(IGS@u+pxcz%3l@j^-`U^G8p$X%Kae4iN<)oERj-B9{tKQ>ERK={x zPyFrRSDV%rTduB4p<#z*Ay&E2ZN|cSF5#xdFiy5_CFkswf*U*oOBMaT)q!|=kqqj9 zpou!?PH^akv#ex{M9lJOODRWivAGW+yb7w3dWa>9T|cTJ1a8|o!<}r`v2h*kfBSYU z`~Q@y21H4+WU~hF?{6DpG~%bkeoCF3pw9^rZXH5qi3g)csILLdS|@c8)SY)? z{>I!V>mopwVMIqPpJ19bO{ z3jB8>raeD6h9|AW&0>FfX@`hSpX?^s-VVPj^B{1*dYR413KywZjhkTJ%q!ln1v*Ck z@Z&U%_531oR8quS2%Whg^|48?#P!@8>{@H2 zNe1Yh=4hMxM|i7TJs=WJgtb;QbbJ9VmXmGH z4r4&uybq#HR3UaxhyBo_db+37%e*41OdNHAn+J^5mAFTa6W1T8()NXhYX<~fLt}T; z9ckRE6v{I^B3E)oGGCQ31w=dT+@C9RjbIy%oFHxBI z!nu5KZ^(j38f*n8?-6$mc=x)AQ(_^k1EBIijWb2k(&P6RkE&>wI5dN;co+HFS^r~| zWRyovN!?-ea-u&daJlLJOp5!xYudU!ba92ubAAInx#gO_n4z0%Hb!K~LXAEfI#*8sP1$12GJlS3K7fWj z`Q5xAeRh@fpQ4lQA7rjlv5AK&wXFnaL)l5rWRMg(ll3-G`}X)60Tw%44@lnZd-C-s zm}+X=b$#GA6rZBjc_VV1WtFK#_~^sHIq&R6GrrKHUErdS`LHjsBhXrj?zeY*rXEw{ zVW21h^pAT9g;|;`Q9MC#LCaE1f+$|}Sg7mzW_!UeVl{nUe9fO{Zs01>{|~LzCV9(C zoef*_g|y-Nl>Bek^QTQ#lI=9|t`;~&GPd6bbheY>l?LTUShrR$qUKCROJY(TAY9<6 zu62+y{%Z|on&7&#^AJL8%TUZt)5n8);Ao}}{Xt?kYmM&GbnnJGR||qk4~jh)>~453 zhme11Xw-jEqu9-%F2DaxqlYo%;mp=?t;HOB16Tvxi3^0Fv-6mtCgIGJDSxSbXG*Be zGJ=Uxy@`sX>Q^{Y;NZ?E`iVeQv<&`_!so3Qt?xa**V>yj!yu~tzxK)3W)+Ox+;ISf zv9_N6N0(&0GwNW;p+G_M$iu-#R2 zq39AVt;Ql3-v@4O|N6M~rE|a(KU-vRhN!;PnPegAE%slK=a{$ZbB#mcM){ z-U|XrP2-5Y#;)p*MRf1~a-+*^VZT!UHPpdkgQ~Uvd0eVytz4l^*=^-tu`{9?w8y^w z@yGaSZ*Fzgl4SWoR0yED4g>Ji_D(bBT(UrO^0;Me0mD*8qjJ5(Y0>cmp zx^c|KF62U&Dd*iFI1Ums{vJM9rg^NtR8vh#bJ)!<#p`yMyr>{F9#zb+&zyvy8cp)> zAXFd1yKkIsns+I``j;V3U?S_Gu+f1#0^LEtV=0w&E!4aIblvIgK>FQ+1?U`3@zxQu>YF*b#kPX>-!OIu~ zA{pPEZS1g&?OYu0S#p1!+2h_MHBde5k;8v!fDkKTMap~c4k__nr>+9w_8}LGUT`uC zdksg^K3nl5c{*Etn+X3`og7!g#b^gbAltxrXgMpuBK%l%Eid+BLlJBp80FdMc`F0ws-#{I4V$~$ zb0@5?Mx*-v4~ChWxCu$rvgD2;XM~@&tK`k|K8pI{N#Dn{dIr$Jjl6Qz3;C14bwN* zTwR(PbbY@vB75SJ3G5NnTqsu_pe7EZkTg3qqz99d*S)>=UY!d4FWm) zxmk2voY>Q%pSL$mOYLlKX1;j&^5S2I3L?+tz4-jo#cHk?KR^F}&S(vhBOgC*>~LGW zN}pr()vu9}tg+WmzWy4tHf(X#-gQ|#*QT(s{nq?{g6{@5dZa{YZMgk*+02=ex9;6r zcKWpUtXZ>yY=dqWue`Nm{rY}2H8l;f?m!)}#T7Pw6Fpi=V*fwSuBxgE={?@|wvnBU zO+$q1;)@p=y}i8`fBdj;RTAWCby||C`<3a?q%8;b?%fNFL=6Fs3HRSGcTjLRm@r{a z-1;@T3m7jk?Y^6L>+apDrB)MI)=xa6Xi$79Zjts>E>$7UPd{r?B-nIybptJArj=G@ zH0jP)xnSbEX8n5eFX658C!JjK$=_wm?@e!WC#6PCIh*Er*~H4mW=pp859ZtTZ0VaL zt7>bvR!jfjz0Djw&2{_{c@P&3sg2_&H^zGtk)tY`F0x3PyX|&}?_~`czF?(^3Wp7(?9N}jD0ue#`OAO*?mhC-s(s6WUF$AC zdZZ-T=Gc}PU?VsElU-RxMh7rQy?FDcCoeDW#m}EJwWe~}+SvuI44GtLSsx^~9sWI^xqp3 z#CC+OzWD0Zsx_DY3eMa6wfw_*&6(LRzaP9{Lv%)m6$-yuCnofBW@=6Q0xY!nQX@Rm be0>?TfNTyR27yb#lR=cHtDnm{r-UW|rtnqi literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/4332ab89-25d6-4efb-be0b-cf70d6c3bc19.png b/parsers/src/main/assets/icons/4332ab89-25d6-4efb-be0b-cf70d6c3bc19.png new file mode 100644 index 0000000000000000000000000000000000000000..6e75a701300e5faacba7046921ea9d81102cd0e5 GIT binary patch literal 7771 zcmeHKc{r5o`yY&bNyrj1*|!-p%#4{~2xE^l*^VV$_qu-9xvt;$zcX{a^SeBRG<-=F8cpSj;dUY^df zQX8c}Adsx93xNon6IKriG2jLQ7!M0pL@X z*O2TDxWsZ;MmFCBy{Vf?Jgd%KCOe$0dh2RKkt-7#u$@t{7AsQXp7jkd5 zOB9IVyE-0T*y-#a-*RJ=4>|kjGjcIG;^RA3roq15DhgcXUdEQL^*PhR*i%I+qgl7_ zBpxN2j=w0E*%%| zLS(ETYmc#g{w!&@Rpe)S;aU1N886fw7lTnUtj$<#XYUaRPhMY_{`U4=vU2&@VY{HUJpIJfb6b;ZCFa3r@{kr~ zOQ;G175Vw|Kx3c*@2lF?hq#ph#iGx;t-Zb4&ioNHJLXyMIDUj9uA1^t&w-rv?s ze%>P}{lI?!eQ@RVrzg+5--zU#u00yfOLquuAq-A#nvsi}|1?t^x7RjYgmWr#v=0Yl zT^tk0E`N`$I7&1NMxsWOX|Mzq8%R44$l5l6O`=55xDYZej2VU3o@s8=hA^pkZ9kL; z+=J~vV=!G3IkX*#p5Bzi2nv>}ZEGWCoqz)fSTrsPlE8|Lip3@1wbyuY!1b!xOdGNW z;YQ%K{XM)O4$&MM1PMdJ;84c|W}LaUjTFS1L#5-01gGy5z#U$j!R4}XW@hp6@vwLc zSTrZh41vXB&EV!{=H^fU0gc@q#U&*`qhfVdDZX(KXt5Lylg(vDM?qFON#y8VT)eh6 zFb?^{KNj1=<4^ji*zYO;dYC1U*k%YA+>FIC`|*ibu45cP^4+2T_(ZHXP^4x=T5R+# z4u$3zM~mX>{7B*K>f!Y#!)i!jOcr}BC_ucwO-7~siDU2LM6O||6f;^RjRla#0{$WX zhUYTre~I-s-&RM~!uin=V7fo~|Azh}_BAko^6T5qjY=Vt%}E&a4^*yEv0PFVg|RlDPC}4hu+iW)w9# zKK8F6ZzhYjgG*YK4S~jDk#KV)!qO6Ji9lKY1@fhFVu6%fWktYY7Ra>`Dh1~RaFT%3 zVX{bJG&6Qo*xJDA!r*{#0BK39nF=tk*@0+q4jdYZ8_n^Kj*i4@uX+nvrTlZ)11Kme ziAy4oxHMokxVZ%mfxy8r-f#pCVS%$ingAE@AMnvsCVlt+gHHTz-`C;4I0Hca?;FwI zslQ&PXi-216c4;ARdkda1Fu69eu@Qwq!m{WAyCP2Rlq3D zb@gx*pOBUS$?9bWnn!^^auTitJMV<2@5*-Pcz0@c+eXLX>4!|_%E9}@_idDiKNqj? z0#jNZ7^a0aG&JZ6ojOW3?$y9ix4ktONaVwdI2JeXnFZEwBh6feW5@~2tB z&fs7=lx?t=Yi2rGcef>_A2t(s*(b1hF6G&!wzm68!!0;Q)~ z*R8A5$`R3+bCG0-poO(WLWE{OCxjz-eSBlRPJ?I3k;kW>ka{LVc64Ajsmf-7vxS!& z9|!5Ym#UNTANLB-ezhN}*8Va=aGn1XKOt1(fk|a;14x=zliFRVq;8Rxo*w|ZFA4*7 zRX3DMryk%PC{*%LYcE`HrBEbwTx4p{gWlmAD#t#SM`k*)casf-`bBiEEncUq!5v%? z20H$VNjB{KLD6~L3t~~eMC+^W3R8(Im=WI*iA1z7sNcv)c}fA?Ty86WRTEPhEPX_% z-`MC$=ODu)NOpr%a@n<=`zCo!{K~0BRk5x2`}?jaXWny9DiCWf-wT1Ot2&DDPV+n6 zGA?hoEXYh9&P**-YZ@Xc)jiDen13AFKR3tUI+B;w14Bp`ovbp9Q%?)-(E{CdIH4Fe zfZZvoZ)o(SCM6>d|JA=@v(6P`4N>IPa$D`bjev`;PO+2b_k~IMz2l2#9|2T*!PbSj z5&Li>Mixik)Tamcv^|bg4mZ!Xe@V5!Ub~V`uHWrA3NDQvGQCzgwm2xu0Il`!jkLWd+hKoGR8W@?`ul^z_ODd zqOR#fpeqM2%@Mm1SG~^j+mR!QD?2sAV0xXu z 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 Dl<3r9 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/5380b8c3-f224-4278-af4d-6b4a19d869a1.png b/parsers/src/main/assets/icons/5380b8c3-f224-4278-af4d-6b4a19d869a1.png new file mode 100644 index 0000000000000000000000000000000000000000..8fe6bf092f7a20f28c9a83dd59ea23bff2f048cd GIT binary patch literal 2247 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/5f313a47-1484-439f-81b1-a196b66b6e7f.png b/parsers/src/main/assets/icons/5f313a47-1484-439f-81b1-a196b66b6e7f.png new file mode 100644 index 0000000000000000000000000000000000000000..7849c0bbd8e1fd1beff165a9946e5db7a6647c34 GIT binary patch literal 2453 zcmV;G32OFW1(OKC1S2c|&^1>7|3Dc5{h5+ssWIv8{L&jlUSziI*m%1{Q_Is&- zCB3&|Mqa!d>6bZ(7XbdZ(!f^jEez2u1GH~1~9z$W?1?Q zq-&i3)BX9@(xy^H00!JmFzykgeNJ$zY7YVMQ_gM3s=gG!E7#?sS@2v>Dk1vk^^1nJrWJ@gp@OE_h(*WLES^f`vxetJ8E*}098Zf-~N?7nC zx-15>WHDYG9q|1CdpMByR_EE@__Ct}FAfVhdGF^isvT@uuQ|c_9J?6Xut{b(L%iVAOOE^ z?V(-ul>pc~OxR_^>UZ+uy8-zO_W+B0;Q=Qv_6+pra0utcBj6l--FZpcvptePFFfD? zN{()|f3#RI$BV;AdqM(EaBqVp zBPlsJV5jqh5Cud9997AY1382jM+Gb$3#PE%Wk|Q=5E97i?#1B%E5w3VL~=-1BUuXw z+y#0O0q+Nhw~(Zi94lUgbSaXDfX`Lh6ACcAcQYV-CU_~Gxeq$Un8}MD^%4a{15Dog zuE4#oD&i2nJY9*@9T!gAq&;B(D{RY9JBm$9pVp7TxC!(k0hZpDp>{RN(TiQAJs|)q zcyH@^uu}koy!c6LX-^cu(%Uk0Msxt#BgSm*#qNL=wq;<&WK+GT;8oTSl$#3lA^?{5 zUbdYm=RlBKP&mK}bJ0Ol5JxXo-vHI+60NW%+{=5bGe50?({iHZ=B6A6 zRG0Rc16K0h!O!WUUDE5|9Kh@LOPL!e1%9B2QcMP^b+#; z1o%dLEneDV0oX)}!*vmEK1VMWnb%kSR0XWCkZ<~Erb0l3bAAn4SD&vy8?bah-6R4t zZKTqrJt~0HefMD)>KP;{NsL(xbq=uCn_jYG+jW-*almPc@f<3X-X+#d1u<`^lBGRj zfYbe!22>9rNxxemONzs}(dFbRS=uuga2jnc!(jAcN3D3O$mJ>rYK<35&jvWn8GK?7 z0-Qv1FQBClAW1z9IN$L>!F-MtIe8Rj1e|Iq&!B;2FTiQNb`L6l9%(DLr9JYAP8oXC zKXXWl(w=OLefd#9q;R)(cX|L!Q8d@8KUanHHlUYrFu!Tng-YpYJXJ(1UDbw_DW zuh;6a0Xr<+i3anzuF{oHAu`rgW%YZn080*FX)RS-$5cXRTuXN4D@oeJ0_^0y;=%7O zaNOS&)G6GmvqcVEz@zuhA#n0yy0YDo^K#5izz!0Y?6Z`6`b*|>uuIkaEc~OE?HByv>mQ$9)*raM6dxp^kc=X;5;%RLlthA>Qu)}<> z_i9a!*GcDf^kSB@rwy>Q60*&zLc@7eb1o0C)?^JdUKLPity&?X7MNu<;-vloUq+ zvgK{AYJRP5d>XLyretk)V@=Yf4R2MR!!)z%+QM{m1#nt!qxDUxrx4m~$(o=KfsxkG zhZHgN*uPK!J=r0-dp)O33kyb*wAA(njy}LCK_Cx%p}bFB3GS;nmLC7K{QQZ^=+!;+ zFMa6yO-NdD;-bh?*Lm6|C;t zbB8cz-==CExArm;0{k6nu^7^ucyDDfCrOPKu-tOjq&)k-bUIY7b#8}UzGd?(;w z-PQuDgRJQ~jh8HKySuS!TN~8Y1^g|84jaqtcD-F&uB-!0+XkINvIsobb$R2|G!t-W z65Uw_{x^>4ZF)KrGHe3uwfUEg3D$2d3qk)j;rr;t<(&u%vYj@-UfQDa%o?M`B)nUY z&vre0=AkW$VXpF8QL9kx0z7(g8K4^#s+7Rel0eTXGW((gUJrTS^=K=Q&r;UREb1En)4+f7%(cYa%v`=Q^ z$h4$Bjew_UO(|Nw#-BysA?S5djDY7XpQeD1W6t_Lq30oMcGhCkCF>nzf8l$V0^xdM!U8>}|9=hd!~@5TQCv;_;h TEL=$)00000NkvXXu0mjf8a|RD literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/60453b61-5899-4234-9145-1f4ff35bc681.png b/parsers/src/main/assets/icons/60453b61-5899-4234-9145-1f4ff35bc681.png new file mode 100644 index 0000000000000000000000000000000000000000..f8a00259704c9a56f8bd0102bb062dcfce6dad09 GIT binary patch literal 4095 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 RTmKn7KucX;txg3N{XfEhp=|&F literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/68528055-b4be-49cc-8e49-f46ddb02449d.png b/parsers/src/main/assets/icons/68528055-b4be-49cc-8e49-f46ddb02449d.png new file mode 100644 index 0000000000000000000000000000000000000000..1776de93bda131778b6c6111b372262aae11702f GIT binary patch literal 2203 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/6aa09296-0ed4-486f-859e-75786ff68eaa.png b/parsers/src/main/assets/icons/6aa09296-0ed4-486f-859e-75786ff68eaa.png new file mode 100644 index 0000000000000000000000000000000000000000..fe4ed0a62a7156b30075ced4e4d9961ec37f3b9c GIT binary patch literal 29280 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 Z=Lg84(lrl7Oql=x002ovPDHLkV1mugn&JQe literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/6dd4f41e-f6cd-4c14-a2c8-38905936ae79.png b/parsers/src/main/assets/icons/6dd4f41e-f6cd-4c14-a2c8-38905936ae79.png new file mode 100644 index 0000000000000000000000000000000000000000..07f4c8f628e019f78bc9b5d371656db4e82c0671 GIT binary patch literal 918 zcmeAS@N?(olHy`uVBq!ia0vp^6(G#P1|%(0%q{^b&H|6fVg?4G5)fv*mnIKX!R+Db z;uum9_jazYpNu1qTP71%%0bgj%DWW`8T$?xJwMG^)TmQ5;f`XHibJJ|>ei^gi}UYz zZ2Rh##kg4N_2=qXZGY3l@6T^vpT6gmkcIwj$zE9wg&jY78xmN=)dTj}mKij43v1ky zvz9n`lv5L?Z#%om^ls~zuh>Vj&`3a2Pjjk@>3sRg=C!d}5j$`J$4oSjhZr@DR- z%bT1_=gVqyuir1b$*l8MV6tqE(a*=(?;c#e0+a7Ny_Qos`^2BF;G(|G8auZ=J7xRuifei5=Y-kJ^3Q&m zeb}Ehowwb7&Mn*d+@22#n7_PFQ8ZtoT(7aO>d!-gH*`~+e~91c#*ylIiolG<;OXk;vd$@?2>`9L BhFAaq literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/7180aa0a-ec10-4cfa-959f-04af4163d5e3.png b/parsers/src/main/assets/icons/7180aa0a-ec10-4cfa-959f-04af4163d5e3.png new file mode 100644 index 0000000000000000000000000000000000000000..bdd8462a7330390929e0407802bdb76fa00026ca GIT binary patch literal 1057 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/7dcf4941-c203-481f-9423-5cbed8f4aa24.png b/parsers/src/main/assets/icons/7dcf4941-c203-481f-9423-5cbed8f4aa24.png new file mode 100644 index 0000000000000000000000000000000000000000..94dea6215d2e2959ba97cb44c66fe4911b48f4d8 GIT binary patch literal 6399 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 P?~#<{HRS4LEyDi?Zx=7a literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/88215495-ab22-4533-b96d-5b319de880db.png b/parsers/src/main/assets/icons/88215495-ab22-4533-b96d-5b319de880db.png new file mode 100644 index 0000000000000000000000000000000000000000..3414ba9ec09bef2ab205e0d9c01791a104957ac2 GIT binary patch literal 7706 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/8ae02378-cb96-4809-ac5c-309b06959c76.png b/parsers/src/main/assets/icons/8ae02378-cb96-4809-ac5c-309b06959c76.png new file mode 100644 index 0000000000000000000000000000000000000000..88bac060530d1df7e5966f6693df84154ff84bc4 GIT binary patch literal 1554 zcmY*Zc~H^`6y^x47~}p`q(qXIE0_ zU7v0AE$?~x>fWr?TG|l1CNE2{Ve{HxG0p1`db5^k_|*%JG@VSx3{l07Vxyz{UqrM5 ziY~8TcI3l_L%fglQBo8)lFFksaS0aQm&nelr=l= zz=+m|L!~Zal_D)%ZJxUceiu4g`u;tGn$AT@r#xa2ave_Gi#kRiOywvZ?kO&CdG}N< zpMtd}2H_Jt`*C;N5+-B}^S&<`iR zBUrNyLeBuxMX%k&6{jfR`vp`vZNS?I$NHq=JGrq94r`K=Fr5E@cLa__rdx%QA2}3l ziu~NfA6)2oqKBwkh4dcV@5*wYIrURtkdrN#&m`R`Gue%W`9ViuqbSu-6xNVcK)+XH z<|Ot3+JSOlI3CTgug1ewhnc3lU9dtktMLZF`DU9NSis?);2n!HYK(GvtHCynE*B65 zv%E$X$ZQuSv41L4})$qC(yx@p0>B z>{z?N&SULUuQXf5b-rt!wAvaw#NJt7IZguQTIXsn2NH`nAt>d#&am1)$J0Sm++HHUFNSYU!i;p$5a1?Hw70zc-MpiCZ$3j zmrE{HQ$TvZuAhUr`a`$B48DyF?UGIvc4u|JgI<&4iTgAqlHz+cbBSaaiq*c{4Xxi#j`rzU&?lNEpT7xMuzI@K!kPZRYlORUiE{VlPx4rm>T{zYV1(cov zisre*UcofDjaCe2luEL7M((S|jTk>b;e2k5=FxuB?|Xzf61UCg8)kmn`#;J$U`VM5 zhN(z#g%mY!ftIv`4(BsM-&lsa1-y~s6N#$lmXY5-OlVFyafjmbK!q6h&$b9f^+X`E z>l}LWiNXoM4VwNWqsIN=3nhE_Frj7lD_5dBW3fF_xi`B&Nu4#EYpAxrzzZ@gjFwO> z(GZ1jZ{zmmX>dH(*cTfjzVZn}+h}9QZo2JX=0;zr|5raws3Xt7dG&_Y7}+XhZ|wu; z5I`jjIktWZ3;ZWHUyou#R|F@UeZ&tk-mexsV)pg;)VoWEx%oSI_F4F9Y2AqVzMiVxDZH5I*%YI erIM7DS^Gb41Y9;sv}@6bJcQ=s?_K8=^W$Fvb<+|6 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/92405e18-7016-4e27-aa20-04a42b056736.png b/parsers/src/main/assets/icons/92405e18-7016-4e27-aa20-04a42b056736.png new file mode 100644 index 0000000000000000000000000000000000000000..0421a9f0421cf892df126303076b0083b0fd6496 GIT binary patch literal 1552 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/97232280-5e6e-450f-a5f7-d6c785b9c1b0.png b/parsers/src/main/assets/icons/97232280-5e6e-450f-a5f7-d6c785b9c1b0.png new file mode 100644 index 0000000000000000000000000000000000000000..f57aab65eab5e02a21a02c166f1ac569b8faec43 GIT binary patch literal 5344 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 N002ovPDHLkV1nQ?I79#d literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/9c102fda-7a8a-4561-b098-ebd654d4260e.png b/parsers/src/main/assets/icons/9c102fda-7a8a-4561-b098-ebd654d4260e.png new file mode 100644 index 0000000000000000000000000000000000000000..95c99c8c8b90f2ba20d708d637c79b71dad50963 GIT binary patch literal 4039 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%0D$^QU<=nrcE literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/9ef44968-ff95-4e43-a1cf-de9a65d980e2.png b/parsers/src/main/assets/icons/9ef44968-ff95-4e43-a1cf-de9a65d980e2.png new file mode 100644 index 0000000000000000000000000000000000000000..48066626826c379ee003ba342b52cd4138a7e69a GIT binary patch literal 1394 zcmeAS@N?(olHy`uVBq!ia0vp^6(G#P1|%(0%q{^b&H|6fVg?3oVGw3ym^DX&fq|9F z)5S5QV$R#U_q8|I%N+lB{l~g#@u&O6PTx2+^Nx(dQW5r99!{Oi?oZ?kPFSk%lGO-2 z(J3-f=hVSZ%4OShEH4IZxianMtXpmC-ktnA!-=%l&`tQJ3W##pD^SA%r zS-m;-Z0;l#Po~9LX5Q~PXY8^tD3qCD!RI5xuGYsae7v#q@qr_S36H?SJM6#6F)+x< z%L{U~PVi9+jEdsgeYbCo&c3&u3vS;}vYLDB%^RIpuU`ko#PrOXC1qk_a^PXXfwawu z85taQ^ZnOatq=FK9UgB~$Fj*RP_*#l@Sh@87d0p|mvgfy=Q4kq>N#kekbEX=yqC*XQKqe)_=UPq@?Bd@9I5!_a02!yl~}8 zPQG^M^BY&pxN2(bCPBT0r&o;_Q%d2{gl zkNZ>;8Te8hy#KB&!lfv|qa?s_;QjZ=>+9|1{ZV5V5*D_qQsy`B zS-IxduU{7y6*YBrajor3x$tB5nopmK)~sLu`F4QGlAq-leSLjjyncQ8SH$5(3k|}2)z>!c{8F}s2$B%`P z=6uSRbvCGY-nezkDLPs@XyueOwm~aJe*OM^@#@vqy?brJ+rVxr=mJoBiisDSWr_T`s3XP<3bvnK!Z z6NlPK30t>r6=Jw+w3w_URYuD-?jrTW^3NRTB#b>A^kUb=MYh6tTqbN?Sb!}VW0XZvl}{F5RNjzfzV+!1hR s{)|4oO&@DRR|1PlzSIcMG+$o^Eg+i%h(X{|@MI9>>FVdQ&MBb@0K`X=6951J literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/a4a5df6e-6575-4b6e-99a2-7dca8b418c01.png b/parsers/src/main/assets/icons/a4a5df6e-6575-4b6e-99a2-7dca8b418c01.png new file mode 100644 index 0000000000000000000000000000000000000000..1b0b026e0473115870ad8e017207f20f12cf64f5 GIT binary patch literal 18739 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/a647976c-f36e-4966-887c-82c9b4424171.png b/parsers/src/main/assets/icons/a647976c-f36e-4966-887c-82c9b4424171.png new file mode 100644 index 0000000000000000000000000000000000000000..e6dde21ebc767362694cb0ab65a0d59389726616 GIT binary patch literal 17439 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 M07*qoM6N<$g85a=G5`Po literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/ad3d5d3a-e703-4c32-b5ff-516c5648dd48.png b/parsers/src/main/assets/icons/ad3d5d3a-e703-4c32-b5ff-516c5648dd48.png new file mode 100644 index 0000000000000000000000000000000000000000..80bf6a4f71e1642b13b95fe865c86bb741a84ece GIT binary patch literal 1886 zcmcgs`8V5%7XPZE_M$~gr(;w?nG#z>?Mq1+5?hd=h^5396-yP>+LCCzpth)@=%Z?h zDO#~~n%F7NSW<$asp>|m)*>(Oy!m0y`vcxRcRQbR@BQI(@3{nolbxj4Sup?rB;ocp zF8rAAA3Gt)_fjwVmHuYZvVZ(lz>x1%f z9*?Ki$Ge~d&9CC|o(Y1q_4jjvfG^cPzczO*`b7^ARJ9G%26-TTV-17LFB$#NEA}9K zzON5$ePhGH-FxxRWl(q~z^%m%6Zc3Mh?#XQy~EZmM(uWm+0{Vnt2d86to-N zJKsXQ)Xgz2C}%B@gV* z`OdKB9Gr<6Go{L5UW+?CK{geioQCbX+Zu(EDY*fnzS?dQ_V%hHKiJ*RkHjXn^)C7t zjqsue36zS%?j^tOC12oURa3gc0ZnKs*$3o;xmQzf<=_OeLHwR|L+&4u3dxwE;dzG` z-+N`>Xqob}86j$gUHdIUX!Mhw-x=8W_TDA*Y>IDlx~N+cJTLuZW?RibJ#^cy6aqxZX&jCh;FVNq ztbieHOQ~{S(P=EV_!{|9W(&$GiLIs z+kt+oQfz;X%t&yXkHCXKmMq{UF?YS?9FDxJsCx9BRE%#)+>lpr3Ge+)5fbz_;z~P87FJzFqyql(@W9 z=JPfCOs(zm-DwWxh)J3@K-gw?iA~Zym|ubGg(q--#KREjMq$&J^|7IZ$_mxmoypYBaPY zfreXIE1p>;lqX%S9e()jjpRTmB-!xRG8$aeKp>5${d6T0ZWLN2C!$&%J6(oi};K9+#!8IQ(|Ar=A| z+9tA_hhG|8{QhY%61#ahRdd7?QDMqNx{l05pkL)RZinh-V1drs%u)?igIo++L@^Ch`>d8gPA2L&S~v#m3SD0>Va3;iX>jx#7K%5^`B9zFfg zNFiTyT9OfY1ahDv#3uCbrY=pI*`-gjheX9!w~R{93hHk&uoEn(m()OL(je-=oMtif1VFNUWm3$wy1ri_8=-Zy)n zWy53M4MrbxO}mdhXUUW(s|^{E=-&w>&5$b^GgGi4b5hci8uE<96j4ib(J0gZ#rEs3 hXVm&dvfK-J0&}YMjnTF@=J}5qfZICRG+O!H`8O+bvXuY; literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/be1ef863-6cbc-481f-bf45-77a17ff39391.png b/parsers/src/main/assets/icons/be1ef863-6cbc-481f-bf45-77a17ff39391.png new file mode 100644 index 0000000000000000000000000000000000000000..abeb730c6342c9d0f1f97664db123ee072da403b GIT binary patch literal 558 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 M07*qoM6N<$f)OI_r~m)} literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/cb386765-41b5-411c-a4f7-1a8dac1ddaeb.png b/parsers/src/main/assets/icons/cb386765-41b5-411c-a4f7-1a8dac1ddaeb.png new file mode 100644 index 0000000000000000000000000000000000000000..7ab0f87deca4c37f36a71379372d042632f2a2a6 GIT binary patch literal 8476 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 KMNUMnLSTXm6?BIH literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/cf938f40-b4be-41f1-aa71-1dcf92b7ae66.png b/parsers/src/main/assets/icons/cf938f40-b4be-41f1-aa71-1dcf92b7ae66.png new file mode 100644 index 0000000000000000000000000000000000000000..f39b567cd781b664a902e2dbc9d7da80c16241b0 GIT binary patch literal 4985 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/dbabcbdd-a6f8-413c-a3bf-d8574659584d.png b/parsers/src/main/assets/icons/dbabcbdd-a6f8-413c-a3bf-d8574659584d.png new file mode 100644 index 0000000000000000000000000000000000000000..afa672824b115f8c2da4cd652b1adcd7a5349949 GIT binary patch literal 3177 zcmV-v43_hWP)@iqwoWAQ2VuK|adLR1ytR zDlH`|wY13u#~B?foph`*EXooz9ZfUSum_`qVqqX+0h$8&N(>dX5X1-E>#sk4=fdH# z@7e3Q_h#Synb~vU-m}*Ft^GZF@3nsGw|=`OB2<)@dfo<9#HA9r=xa9Q7+kg_&A2<})7kE$O|7(H&0nY$`2Oa@BV;WHj9F`jJ zY2b{;&$RQq2ABz458Mj`Ul^!Wiw(i}IB+>I(y{y!U@|Z(m_<|qhhPU_DljoneYXN% zM{nicR08{P2yh#)Yv6jH1daig`BqeoqTM+Ym_vAR0X_iC1wQCoQ6;cFHQ;-|Pl-E7 z-4VD4eFQk;bBnG6p8&?9Q-Q8;@;cxtU;%I^Iu$4jHDDU>wG7+*18|&kX%TTbjunw* zV#eJfvX5gsMLVuA>~m;Nw6Jlr!?r-1h+OSpV26lYBqB9eLknsB;K9IhpxvdB1nvS(06GHI7mMvtpYi+iHUxEi?1bgr&-4mDpK#)WjtZ|sZ~H~1 z2HZd~#07XaIzP6;MBu*o-nH^_EQY041b zioA_TV0+sFCISz4FvNzbz+sWwu%V6)s@{>a9Z6Vw9!&~Ze`_r13;Y&c6fXj200-r5 zL=U`bTfju%*BuP8Wk+;Clecet7vKju+t3Q@B}9`GYW=NoW3h;BXc}8{u9|0bV+|B~@ zu~1Zg0esc9u&q$PME$ctLON4u11^i)#u$n%?tQ2`*BO^9aTc&Q`p}OZbNd-|nih-6 z5$pEl9^hDDy-y{sx7rucK<}aG2z!H%5h+ZGRPPXqw_4Q2)u_1MUPRw#>Emb!&S3O* z`kJpn35*B!ics&F5$g2iDKt{`n|NNiU4$Aey#QPY>gnQ30qb&Q9Xjp&D3Qd4Y&M@A1>A@(#rg0s`laz@cl248Ckug-fhS@&l!e3M9#oh` zp7rcUn8DU50qXGK3gBQe5ErsrwRsLrXK<%yJtz5_!pQ;ZaN%`yMlhMU)5^`rdVg>m za1A=Oa$y;MSMhN2S!;e4I3D;%)(vO9?%IhCEUt7c|Dnd=%JCj$U0Hxere-cK6Y zz;|#DOFi17?eQLEUAPY&WWJbjyBo z2n-sUW4gj)8w3!0@6(g$6fBEfAXXGfV1PT&^h9aw0raz|cZ{1kMyy5y2VRNThBHOX zbk`2dBmF8J0W3DG^A+N3qT7JRRNot+?jRKH3I=!!T@XlnmYI6A_8{I4$#W^NxKK=i z0UiauoAR0W8rJ19r841GG$~r4DXPGrAuO$K!KOJPV+gzq^{E%0A`9Gsrq%5U(<|6D ze{)Z~iTbodg%3rgRWi*s^xJXQ~=AmJ^rzQN&G)ZUZh|KfI zKL2JrI_TU7*bPlDu^w0fJcvfSBzw*h(%XRF?+~w@X%6u*iI(sc_$AS8Wof*3tY_vFQiggl=W= zajwi~(>9Oi4L%c8J8UT6%?jZb|SX@V`SK{x~*aq!Wp5g-BQb%KXAI#a1BMASJ4i|w}V!zX(J2kW~ zM|jrb%Y(q|t~u!>^514L5x6vG8>ZnO*L*4A-X-kHo2aH6oeqxzpCkW>{0o2yIko); zZkyqnnLxJl+$1)jT0RP!dzEIQTOC*CU{o_Ri0{Hn;%59}n}?BY+T|oxq8iTZ`bBrQ z;r(cu!i&f*m2Y>p1%3zg&$!*|J<9e+ZQeGFDb~DzYPL73;YL~ozV}7fDGx<6)9iq* zHMXHI(by5#nRr>!r_*?jIC3oJFLQhXO>O8pdcGF-v=nIwunJvGdl_B6T!Y?io<^s+ zf1`)TYpbBU4d}Pw{uZCv23@fkf^M!Jfd=XAW^R9voQ}HpZg(tilUDIY+{HbSaN<6L zj(!)Rfqlz?f8#Omi?wxS5IRlx80wC6eb4<%=xxX4**F5TycmM+et5>AjUCW@ovu+B z&!cY4*=V|l;E%;D_9oSVL(tuK0$nh< z6OH7En?*lzAX)dLCL*In|Z0==h2e!ThQ~|UAQfp zzTq6wgVP^EpY1lr*3of9T7bb2%&zoiYUr~vEnECj^bM;wqPZ!vC(CbB4@XTz#)`=N zl&fHZL*37()cLrh%@b1Uo!{tFrdMmyQG~rof=Og;$~@b$u2yM-*P%gtwlv%DHfrNusLi=wvE3=6z+J2bzJ;bt>U!(u zQKWor-^^maO_ao9vjw3`0RbFgDnlO6d?dn_qpmYp>EV18@ug9_0-9HGW=aB=?wxuobWr-1ZrD7y+PolCBqoo zK?_N55cpxXeBLfk`d}I94FY$t`RsKP9<>3sRS-LmB1yZ61e140+*ah;F41bTyp*o@8A^b^_$sn P00000NkvXXu0mjfaH9mp literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/e077c716-9f21-4b4a-9848-75c8c0d10b01.png b/parsers/src/main/assets/icons/e077c716-9f21-4b4a-9848-75c8c0d10b01.png new file mode 100644 index 0000000000000000000000000000000000000000..09c8f6130b5fff04030100a086c35c413e50e69e GIT binary patch literal 13221 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 U007cclK=n!07*qoM6N<$f{V|hga7~l literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/e2d55d9a-03be-4d48-84e1-9553b909bc56.png b/parsers/src/main/assets/icons/e2d55d9a-03be-4d48-84e1-9553b909bc56.png new file mode 100644 index 0000000000000000000000000000000000000000..07cad4d20807f8ffe9d909019a804302bba67c8a GIT binary patch literal 19068 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/e81e852f-ba65-4bda-91f7-fe3eead097a2.png b/parsers/src/main/assets/icons/e81e852f-ba65-4bda-91f7-fe3eead097a2.png new file mode 100644 index 0000000000000000000000000000000000000000..82b6199b62b793db201ed45977a571ae3113c23f GIT binary patch literal 5972 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 OKtokmr9sI$;(q}127X`w literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/f13050b1-a66c-42e8-be66-47a68d5f2318.png b/parsers/src/main/assets/icons/f13050b1-a66c-42e8-be66-47a68d5f2318.png new file mode 100644 index 0000000000000000000000000000000000000000..52536cb5f87da034f3235fbf1ad31d015c65fc3b GIT binary patch literal 3598 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 jDB{2FYyMwHbOvHv=r!6V=z1(x} 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 Date: Sat, 11 Nov 2023 12:59:16 +0100 Subject: [PATCH 04/14] Update strings --- .../src/main/res/values-de-rDE/strings.xml | 46 +++++++++---------- .../src/main/res/values-es-rES/strings.xml | 2 +- .../src/main/res/values-fr-rFR/strings.xml | 2 +- .../locale/src/main/res/values-in/strings.xml | 2 +- .../src/main/res/values-it-rIT/strings.xml | 2 +- .../src/main/res/values-nl-rNL/strings.xml | 2 +- .../src/main/res/values-pl-rPL/strings.xml | 2 +- .../src/main/res/values-pt-rBR/strings.xml | 2 +- .../src/main/res/values-pt-rPT/strings.xml | 2 +- .../src/main/res/values-uk-rUA/strings.xml | 2 +- core/locale/src/main/res/values/strings.xml | 6 +-- 11 files changed, 35 insertions(+), 35 deletions(-) diff --git a/core/locale/src/main/res/values-de-rDE/strings.xml b/core/locale/src/main/res/values-de-rDE/strings.xml index 77e799d9..2860e241 100644 --- a/core/locale/src/main/res/values-de-rDE/strings.xml +++ b/core/locale/src/main/res/values-de-rDE/strings.xml @@ -5,7 +5,7 @@ Release: Working copy Locale: de-DE, German (Germany) Exported by: rafakob - Exported at: Fri, 27 Oct 2023 12:02:50 -0700 + Exported at: Sat, 11 Nov 2023 03:59:02 -0800 --> Verwendung von 2FAS beginnen - Bedingungen für den Service + Allgemeine Geschäftsbedingungen Kopple dein Online-Service-Konto mit 2FAS oder importiere deine Tokens Neuen Dienst koppeln @@ -119,11 +119,11 @@ Bitte bestätige deine neue PIN PIN erstellen - Bitte gebe deine aktuelle PIN ein + Bitte gib deine aktuelle PIN ein - Bitte gebe deine neue PIN ein + Bitte gib deine neue PIN ein - Bitte gebe deine PIN ein + Bitte gib deine PIN ein Zu viele Versuche. Bitte versuche es erneut %s Zu viele Versuche. Bitte versuche es nach %s Minuten erneut. @@ -452,7 +452,7 @@ Token erfolgreich gesendet! Fehler beim Senden des Codes. %s - Gekoppelte Gerät löschen + Gekoppeltes Gerät löschen Möchtest du wirklich dieses gekoppelte Gerät löschen? Datum verbunden Diesen Webbrowser vergessen @@ -488,26 +488,26 @@ Wir benötigen die Google Drive-Berechtigung, um die Sicherungsdateien in den App-Daten zu speichern. Internetverbindung benötigt Um mit Google Drive zu synchronisieren, musst du deine Internetverbindung aktivieren. - Um Zugriff auf Google Drive zu entfernen, musst du deine Internetverbindung aktivieren. + Um den Zugriff auf Google Drive zu entfernen, musst du deine Internetverbindung aktivieren. Speichere und synchronisiere deine Sicherungsdatei automatisch in einem versteckten Ordner auf Google Drive. Dieser Ordner ist nur durch die 2FAS App zugänglich. Bei der Synchronisierung des Backups ist ein Fehler aufgetreten. Bitte starte die App nach ein paar Minuten neu und versuche es erneut. - Bei der Verschlüsselung des Backups ist ein Fehler aufgetreten. Bitte gebe dein Passwort erneut ein. - Bei der Entschlüsselung des Backups ist ein Fehler aufgetreten. Bitte gebe dein Passwort erneut ein. + Bei der Verschlüsselung des Backups ist ein Fehler aufgetreten. Bitte gib dein Passwort erneut ein. + Bei der Entschlüsselung des Backups ist ein Fehler aufgetreten. Bitte gib dein Passwort erneut ein. Es existiert ein Problem mit iCloud. Überprüfen die Systemeinstellungen Es gab ein Problem mit den Berechtigungen deines Google Drive-Kontos. Versuche die Synchronisierung ein- und auszuschalten. - Dein Backup ist durch ein Passwort geschützt. Schalte es an und gebe dein Passwort ein. - Dein Backup ist durch ein Passwort geschützt aber ein falsches Passwort wurde verwendet. Schalte es wieder an und gebe dein Passwort ein. + Dein Backup ist passwortgeschützt. Schalte es ein und gib dein Passwort ein. + Dein Backup ist passwortgeschützt, aber das eingegebene Passwort ist falsch. Schalte es ein und gib dein Passwort ein. Dienstzuweisung Personalisierung Marke ändern Erweitert Icon beantragen Kennzeichnung bearbeiten - Bist du dir sicher, das du diese Gruppe löschen möchtest? + Bist du dir sicher, dass du diese Gruppe löschen möchtest? Deine Sicherungsdatei ist zum Exportieren bereit Exportiere diese Datei, um deine 2FAS-Tokens zu sichern. Du kannst die Datei später auf anderen Geräten mit der 2FAS Anwendung importieren. Datei ohne Passwort exportieren\n(nicht empfohlen) - Die Datei wird mit der Dienstleiste der App synchronisiert. + Die Datei wird mit der Dienstliste der App synchronisiert. Vielleicht später Einschalten Keine Dienste hinzugefügt @@ -536,9 +536,9 @@ Suchen Keine Anwendung die diesen Link unterstützt Kamera-Berechtigung - Zum Scannen von QR-Codes ist eine Kamerazulassung erforderlich. Wenn du diese Funktion verwenden möchtest, gehe zu Anwendungsinformationen und Berechtigungen und aktiviere die Kamera. + Zum Scannen von QR-Codes ist die Kamera-Berechtigung erforderlich. Wenn du diese Funktion verwenden möchtest, gehe zu Anwendungsinformationen und Berechtigungen und aktiviere die Kamera. PIN deaktivieren - Bitte gebe deine neue %s PIN ein + Bitte gib deine neue %s PIN ein Falsche PIN! Bitte versuche es erneut Biometrie 2FAS Support @@ -556,7 +556,7 @@ Dieser QR Code funktioniert nicht! Der QR-Code konnte nicht gelesen werden! - Versuche eine andere Sprache auszuwählen. + Versuche ein anderes Bild auszuwählen. Dienst endgültig löschen Dienst konnte nicht hinzugefügt werden, denn der Geheimschlüssel ist ungültig. Bitte versuche es nochmal. @@ -575,7 +575,7 @@ App aktualisieren Bitte aktualisiere auf die neuste 2FAS Version, um alle Funktionen zu erhalten und die Aufrechterhaltung eines hohen Sicherheitsniveaus zu gewährleisten - Du löscht gerade + Du löschst gerade aus deiner 2FAS-Dienstenliste.\n\nDenke daran, solange du Zwei-Faktor-Authentifizierung aktiviert hast, kannst du dich ohne diesen Token nicht in %s Konto anmelden. Löschen @@ -639,13 +639,13 @@ Es ist ein Fehler mit unseren Servern aufgetreten. Bitte melde dich bei unserem Support-Team, falls der Fehler weiterhin auftritt. Vorgang fehlgeschlagen Protokolle gesendet - Danke für die Anfrage. Wir werden es uns anschauen, gebe uns ein wenig Zeit. + Danke für die Anfrage. Wir werden es uns anschauen, gib uns ein wenig Zeit. Senden Protokolle werden gesendet Der von dem Support-Team bereitgestellte Code wurde automatisch ausgefüllt. Protokolle senden? - Bitte gebe oder füge den von unserem Support-Team bereitgestellten Code ein + Bitte gib oder füge den von unserem Support-Team bereitgestellten Code ein Protokolle senden - Sehe dir diese großartige Zwei-Faktor-Authentifizierungs-App von 2FAS an: https://2fas.com + Sieh dir diese großartige Zwei-Faktor-Authentifizierungs-App von 2FAS an: https://2fas.com Danksagungen Aus externer Anwendung Importieren @@ -745,12 +745,12 @@ Verbinde den Dienst mit 2FAS Richte die Kamera auf den Bildschirm, um den QR-Code zu erfassen. Andere Methoden - Gebe den Geheimschlüssel ein + Gib den Geheimschlüssel manuell ein Bild mit dem QR-Code hochladen Fast fertig! Um die Verbindung des Dienstes abzuschließen, musst du den Token erneut eingeben. Verbinde den Dienst mit 2FAS - Gebe den Dienst und den Geheimschlüssel ein. + Gib den Dienst und Geheimschlüssel ein. Dienstname Geheimschlüssel Andere Einstellungen @@ -802,7 +802,7 @@ 2FAS Hilfewerk 2FAS für %s\n Universelles 2FAS Hilfewerk\u0020 - Meine Wahl speichern\u0020 + Meine Wahl speichern andOTP 2FA Tokens aus andOTP importieren Diese JSON-Datei erlaubt es Tokens von andOTP zu importieren. diff --git a/core/locale/src/main/res/values-es-rES/strings.xml b/core/locale/src/main/res/values-es-rES/strings.xml index 3a5b903b..ab82c4ef 100644 --- a/core/locale/src/main/res/values-es-rES/strings.xml +++ b/core/locale/src/main/res/values-es-rES/strings.xml @@ -5,7 +5,7 @@ Release: Working copy Locale: es-ES, Spanish (Spain) Exported by: rafakob - Exported at: Fri, 27 Oct 2023 12:02:50 -0700 + Exported at: Sat, 11 Nov 2023 03:59:02 -0800 --> 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/0710608c-628d-4869-b671-1ea5cbc5bfff.png b/parsers/src/main/assets/icons/0710608c-628d-4869-b671-1ea5cbc5bfff.png new file mode 100644 index 0000000000000000000000000000000000000000..14529efdb497bdf405a8623693b3262edda45b01 GIT binary patch literal 5958 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 Tuu$b87zb#mYN;TVAff*U17)A7 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/1624169a-1e52-4fe8-9476-1abfb09932ce.png b/parsers/src/main/assets/icons/1624169a-1e52-4fe8-9476-1abfb09932ce.png new file mode 100644 index 0000000000000000000000000000000000000000..54fac748ea10308fe6f553c5123f89278e5f140e GIT binary patch literal 6881 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 bQQ-dpjY7t7zOfGj00000NkvXXu0mjfv+y>i literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/1ac6533d-d1ff-4ad6-b0cb-3c47438d5c37.png b/parsers/src/main/assets/icons/1ac6533d-d1ff-4ad6-b0cb-3c47438d5c37.png new file mode 100644 index 0000000000000000000000000000000000000000..37089bc76e9e0801313113749a3c57e4646806e0 GIT binary patch literal 6685 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/20839497-1bb8-4b2d-be7f-1a40acf1ce8c.png b/parsers/src/main/assets/icons/20839497-1bb8-4b2d-be7f-1a40acf1ce8c.png new file mode 100644 index 0000000000000000000000000000000000000000..aab44b05955b5eaabd79d750709c4340ef4e3907 GIT binary patch literal 8223 zcmeHMc~p|y*9IJO9&#Q+%~=E$=P8FADreIi0|Av3BtRw20?R2&Z>4FbnOT}SWT}an ziJC)cnw4p03T0Y3=FOor{m{DicGve?>sxoN@AuyYUf%QW^PK1G{p@|t;w;kKT^$Aa zWcdI9fS|LJy(jxl*}QnU+25vUqi5_}Yn=B1vL`YYOdv*uVk0qN@(}_CjG*Dqyjl54OKqqtiLt(Vj5%PV0p8mmNOI*a^DOf# ze$>y6I@iL1iK7g#U|l=!W+#-J_PQx#0uJUycWXM0AuD`~_l!?LG>$#|?tp$GX=9j} zJHp@%U$4k2zwo>GOUt05;HPQbT~@ZU@tQ_WIK8uJF%GUBJ#VF$!2%;ayTZ(ennT;| zE*jjXSvz>*|k`jlz z+zX~dcFXUTNJkXaO87^^8ou!7!FNJ*GZG_OS~A;jo=C5$5~@lBuK?eEdVB4Ivg$fi zvo`fJlfGka)^c_fXj{|jU8Bx-!~cm>J1WGeUh7+Mzp!<(XiMtDeU@i~dl=D2-?X(2 zHp2Rd*2|O9?h9%h7RraSK02JCoS?+il#oW%h3=fYCQ>NwCPTJ)>sZw-)O=WXSZBWH z%30?p;yh{XAyVBzJ$sV(SlG#XdY@THs%Ybzg!CS|-aEWJ4iy-$%Z3kPGgLBEcm8&g zS0*~k!$uJ4Z|J%2TDbMZ+Z{FEor#aewN9Kx0r%hdEz){r$J*>m9s81kYr6zKB;2mZ z+{UQqua&*9m=Nh#Db83G2*fHJuiMs>aBlQNc##T%AV;UqhA$`*8aPf{eLSc1>Re8V zy9Qt`?2C&j;)CS;Ez_pD<-^|q=o{tl<(N#7TpiD)d)WzwvK$)VIt*!VhC}wN|9EOYpQ*e=Zk{QKPd5hPK-QF}q zmBCvOa)hPw0T*|$T@(=mhU>z0VUXPvY>d9L6(87whz>RLw0HPP!G5w-4kwcdW>9Es zY^-jqfo>Er460{pY6^wvL-q9`Yy^aK1W!g%Ab66>CdCg9dkhIh#1hEZC_H$R6B!Z} zO}124X7_{t@DE3Daru)TPx`3>TMsA&Nr39!)8cfSR7$1D7JWin+%Qm6Gw<9Ms8uyC@3ZpgJYAD z*#7DL4Nt~~{w3DmeB12V3g=fx*wg*V|2Om>v2TIdC>Iwq`zTcO=A_Q{mdcy{nxUgm zShU$zQ{N=i1cfn%K`@3W6a*e(jDa9w1}5wl+7yn_*Mp;t(Z5hR<4I&B9);PYVw3A) z**qa8XcQ8KHh}0G!C?@%v7R2pMBfAkK^b7+Mj-~U5KO4)FBEP>EW0X^k-vJiNrh%p z8NyBUVEX!OAN1fM5I8C{6oP~!Lm_Z99IkH|ip0Q8kXuxnc`&naceYg4*M}kv$kf!x(AdCKU*Fi&*z|{UTZ}#!B8gpco2+^; zT?6>ma5T!yfz63zmkt((48uSP_^_>x&BU0o!(mH{+^keK^Ol_*jhP)0gCs{0y`!Qc zEtNO9!JCwScDt|_6dFlJ+9Syr_G~bH12a86_Qx9rGlQ|)Fm0Hg8SEE)6dD_PiU0^i|?<)6b8@!1r*CZDn&+@Xt0l2+#!1%?ExE`?<-BE=h>ER z1SdZd0KhN4c>w`=`O<77582seH_s$LpA?6{IN!Gg06@6M+1|#RGCWfdpEWQL-D$nr zGu7Kuz|!M11lbflw%aDHa^;GosJrNe4*Jsyp8(Xw3(rdWV{X^_`8n4Pm)ypMJfo?7 zy7Rf;iI11>My(T{^2#nz8n3c)Cd+WH!2q^gzuGxx+y*0sO^lj14=T*YRyIx?p8Iau zJ2{=OG?$;yD;oHMk;5~32DWcEN?KO*ljsBY;#E;sFnqt;t&H>8QIDg)QVeL;4q^`m z0rH>ftHz830z~eDBg-4AN{rH#ya4=;qPvPD?wq>&AV6S^_WL(A>Q%$*a(f0*2ZSoB z3OoZY?iR!ISCMxWBCDP$5*-&gCO{<75Yg%eBub!`3ws#=SAs6nCJn)ic=576>{3QOERjZicF6byL{m4 zy^?%M^sfEb87uF#;KRX^zVo`@I0>Aw3K788V%}R4QQGT!B>kvVw_Z~$aK|z;v2mj@ zB1kw=XZ^}bgkNM!Lpb$}<^8e5J5bu**+&?TK;HWv_nRmVl0gLOMtwl!9^F_nJq@|hfNlY7WRFiSh?W30I9{l~5~?3`&r(e?=O^8#r{#ak_k51P8=RSt zQVYEcS{_mB006w5W5QlloOo{Bx4-m#d(8k0b zn)l?XQ^zEbN(A#g8~E?}l+c~5I_AxQn}_7PoaOjoJO_B>U0V_Z_`mkIzDbf=mc{R% zz0OEym@^91PHJlg2keOM2c!dCilD=QSVXMHth14)h(xvH&2=SQwK|bRavNWlcr%%07-B=Hd?gv+R z_QyV>xJM){%5`GY%coQd?W>&l@R(rhEMIrE=+~#ig_W)y;8x^(i`|aU zo$u4=)4B)e(q5lZEPNs~Ia$0WO9y>~T`RNnX4Gs{wa%V3cZ5jaxa{{`ZQe642zrDe zW^-)f07?Iw1KJJkE?oE(2s1C!psz0bhJ;&{0?p$@oOH)-)^KHCxu3eg!Th>Y%Sn&0 zH|J%%#)cNN5$B_==@*$&Kh9;Vdl2B;cf%?bw!;b9w}%d3sWPKP*K6#Q)cH=&?&Dof zU*mNLj@Q>U4l7kUoxjTz_IQZ_*4thVZUV8SoVoqd;M^2N3~;{Z;)0tK!XF)lMkJEn zWa=x?R7;N8J${#04)J3Y1T7A4=fBfb#i7VCVQ%RfqzT$Li)ix5+O63ENV7b7N9j8K zZ6Gi(!7kdM)dCTa=b_CgEFR$+;jftfk`KXI-{8k8(QX08_b?V;AF*#-;2N!qzuB-K)O!K^3JI*Tcp?6-J5RMQ6 zJ*QP-6|Zim$X@4K;hy(N>{Qq&TGWb}2)Cnh;gYwjZL4p8iXlNwH{m0ivS}x??rri$#Jk# zaS*o;*fr8xkd(vmP&W-1ZRYL2`XB`vmbUYFVVKTJEMxFp|B8Xn+3V;Vw%K^k*ytd; zH{!!lR;8s6TvmNQ3c)B;EbBH!iIvEzgT?;4E zvy_>A)LSO|(F*fgMQ%geOqoVc=XR&>C#$v2NaH>GX_bUwK+D6S8$%cFihO(C6)q8! zf&|#^1R{3du&2nhrE7g_ym04&{Y<3d{LUCpX6cZoSv|rn_WQC9B4_^^@^I0q3`aUQ z@|>)~8JGYolP%kY`i;nz2Z^099oz83#A<81AsP#ZXgYJLy6jV-HFd3^G6IUq6P4AULUX_N4Cc=wayG_+W3Ng zudcDZvjChXBo%7EPz4P?F9%w^QpvK$rIJZ`N(^yEGsv3j!4&5~zazXx2U*CZVKO78 z`jDl->l|5p*M&$ErjXar(|~G)gX%>e>ysU|_Kl^w=u6CE_zD{Y>lgP6Li%KaD`49( zdtV=?zmw2vN__pzjI;EDbZ{kXd)VGL)^zbT>g#XAT5#Vlz%Df}CMcqsNBC&JiE8Ok za9}i6&CW;$5PN@&09;TCOAGyhkIgo;i@}#f{AY)&8CKY?1SL1B^$>u0EV`PnYf>i^cgUtT4IC#R%v(JG_s| zUkzQ%p0*uOyHxQ$ro5nWXC-apDLvwy!APA9XO06!Yqkfs$F7JlsK#HvH-X+m$Vb1t zFQkY5ELX+l!%_Q!*HkY&!=@*(&b6C|i3LV3{Y{^7u!i14Yf>+h-( z{2sob0G98IS4UoCS>!Mio38eDv?p%^O|_3A;soa17@|^v3qEk7{r@9HGjF#iK^m_1L)NHM}0|W2{7w?oU*-!foX^*{0{T{1-2oT(HdE~p#RO(r; z`AhkG-Xr-t65dO?g>7fb(wC##ygHi%N3FQkE(8>)2bVV$uM9BYJWrjbU(rGiD#p`d zZ>tlVm6kSoJ(H07OY7;u0S62TM;h9tf-gU;Gc_r_GWNQ)xU&hGtH;QsHaoiqMC3c3 z8<@Ew1!%B+MthR5QnO%loGIG*`^jd(QRqnXUeANm1}@pY(hjO0ujZXk3P5VKU*?(4 znb)A&L6GBu01 z*7Ds0Gv{U-_WL$aDztfBQMUZ_?Y$9d)vW6Dp!~Gs9#m>disZaU(NjL%BewwY;r*49 z&#t_H)=~o!gIv3)5t8!4^Hw`+sfO8g1#fba;wP;|5D*+M1i|E70w;(Z>S%h;$?;mv zs8exSNS#Sc7iWB?J`O$D@IH^Lc}Lcz-p|#<1_^nb5bu1PRAzLpeZ0fU6Xonw9N!=I6Be~O&&~;Ggm>O#j=-Ehc6wp9+!FDaqgJes0WUNBY@L7_0wd(x@FfDB| zIAiDoPS?KbAq(EnRAE}#)Ctb_lDB~TMYtrB`o&AcbQQj<^N{H$C37>Fq*cSKhfD30Q}sS*CDmv0 z5AZPesw3S`xDSI=zluOSiNzvN4ubNgkY=7)C>7n7Z z-6U{KXXy6Z(F4TpeV8atwJ=ulb^`Rx;(B>DFfoc$_>D8LIfy(wdyg|CEv2C?K?0AU zc0=G2U6`e7vsZOS1PJ{fYaiKVPZTLm2rciY(?G7*UDow;m1cG6L|2C39YNPJmkjmh zSqDk{kdBE=Y!K*)R7#ZH#M3rGLFVO=I?*2K-ScG;b+;IT3d|~SA-AprX#_NJ?diFs*E~A(a-#--f3nzzms2u4#Ff zjm);wA>oSCLHY*^Ph1kE`hJw@%5MGQ@whB-L-C@%EWV?xb)GS0Tgi2pYjLHn?@?Xv z2y_8aRzg=2aH0Q@d}< z#TL|f&`V`w{6C(sygncB+FAK<*()xOFWk@!Cj C27|Q# literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/20c0dfb4-da74-450b-b07a-bb15c5a6dfb1.png b/parsers/src/main/assets/icons/20c0dfb4-da74-450b-b07a-bb15c5a6dfb1.png new file mode 100644 index 0000000000000000000000000000000000000000..1235cf7642d0c6f53e63de5e058fd5bc0bfd361a GIT binary patch literal 1788 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 Z1k~=CZ`a}4#J@-lz@SZZYHwh1{{ca=2zdYi literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/274400c5-31c9-4023-8dc3-03749e3e59bf.png b/parsers/src/main/assets/icons/274400c5-31c9-4023-8dc3-03749e3e59bf.png new file mode 100644 index 0000000000000000000000000000000000000000..235631dd32d4cd6feafe821e37ce653c1e565827 GIT binary patch literal 2473 zcmb`J`9Bkk1INeQ=S0jo`MRDlu~dwln_)t35qliv*2Er9D7R6$O^&Br9nYi279nSm z4Vn8W4@Q{#Xkv@__Wd8euh-}EdH?qL;q%ic)6pI+DkLWa002a7tdUN?82dj90Dq;} zyI#gGTywN@L7{Kk0eqVOk8=48f&D6%i*~Yi2GDs~C&E%290t|T8CBP+_y{+3-$+-z zsyHp|=LrBHuw{cZcL|zn_xkKttt+CvqU)~gEx3CMd6zFD=mAgSnVi|iT<5VWm3=hP z*;%c1H^6maEmnbw6^TX!%wBN1KUMeAi|?SlqvJ~T?vLj6d!a}Adnpp`jLWF9n8Q<$ zLHr7^=h0P$p8aUYAf%Yz4SIJRbtZ?EbrDI59GSp%ul^Z|`I%+JM~>)+cKVjz5L&!x zxqhD8GN5kg$-+d*L}2)cHn;y~&C7G`;~z_0#RDl~#_N>9$|};sR{-OFE9yp}CqKjUgR#%kRzH$%F$5kk_) z%uc57=D4R{lSW9K6rf^npRK2B9fn26_+XV6=UAqE>iADeFGk?|86Fr2P(FPA$y7sf zRz`ZPs8a4NJsqRjV+x|qf!_ql1@gir{H6MeLU!P1J84u(OOAmr2OH;HKC2wPF=Mz1 zo)d-eX+cLb-KBXgcMSHj)}_MhJ{TpVKS3|S{&^eNA|}t3@I!W$7sq;AucW;zZ${M~ z@{IYar8#q9SeUm9TN?`ya`71UsQ3CXNA7p1Snl%{3e)qd>`Q%JmR>Afp1V|@sq1& zw@1=ypDAy_=&JbRK9ih?ivoa+Dk9A>*|y8#{JpiYohE4D3|K?6)~8i-qY7-kE5ezxUdb4vE4M5tP=oQdiuKB%|ng7h}Z@&Iz#Zq}O<_*XyI;EUA zwqu6OB)OTTcgxA|7Ud!ZCma5)NVsQAfs>>iPMTXRoLVpb}jLDJ)H@odA zO}+`16-_>VKj%qZRp;oB7%Z&<3z zp)0mdSp9g-r}gJ1f!Iv-hIPuqnH|58Co-GnvT5R0cKn+aA7B5bZciTLX5nu64WWD9 zlfUR@6`oDD5{;hs>aHmAyv8jNS(U_nU0NXbkAi#hqLp(a1 zP!AP^z}>?NH8y0j4Rqc+7%R4^SiU!2A;)_fg{g8Lx=R*p$KC{pn^*dW?q*KpeMoZ- zcNi6;sOf}FtH)|1F+=pduU3wjsLs?5tFEFMs+3-Vu-_d{o?;#$tqQOUHVK^wcC*CL zr!+w3wvi>)>R|ROdL~hJ-|m2O5MCCi)2OP32S7H98Sy2gTV8$+kv8`eXnKuaNyE%= zVyen1VL6a;KMLBfC5U8P4Og-rBuSf!&KvnIB9p?#I2M@l%wV|2q0nRN4_BhjQ|JjB zS=u;^T~3B-8E_3}@v&sOcfuB>G6z$kar~(5R^Zm@5km0u#lfU~pGr-HZ}efrQT!-q z&jGz_J>cD0!Ad)5iBgnE384VXCO6ECu$vC^CNe7Xu5`!YOrXZ%SAXf=-DSG_PE?1Z zY+N$jB*fz?7CXbVXFd?&-4036v%O&Go1CDN^)?qGG1P6jpl9ULFyx<+K%z}7_E~>* zqKZcZ9JMhHTGnp2T*bF_|8*4od~0NiNiU8^9xq#$Yx^fB?mKI~1Dj+_AINKs8~9#= z0gd2Ht$5px!9)KX+NI55f<8q}z?(GLl=5VSR)X2&(r_97A=Xlhs(#H<k=v4I2W_7htog|riD?>~xUwTD_f^(gZJN0Ty`?FZ^VR5t*uJOgg8N4uoT)16yT~uhrTCHos9o?qx5+jsAP4ID z14j!gZ>jC+cO@j^qE|?*M49BGeg|_tdcAo?uKDQ zrOg}frjdsr&5yz!BI6p8Jplm? zgAi6eH|D4jhACZ2$)`~ge_lm~MM;8aePWZg#H31CNTzrGRMmh#N$<9r^Azlub;;Q49ea{6q8C1*j&-yUwl{38Q@QAkd(7y?mXAToeh;`@L z;^_AgATV3;VCFcbKDea;FsL7t^fY$ge|u;An1;}8ncoe2;3@)UL*yC`dl)eurN8bG Nzy@WHBw1jS{|oQ!nX&)? literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/2e2b38c9-3352-4947-872f-24714413945f.png b/parsers/src/main/assets/icons/2e2b38c9-3352-4947-872f-24714413945f.png new file mode 100644 index 0000000000000000000000000000000000000000..a897094ec23f069e52712ccfce98bb695cdfa05a GIT binary patch literal 9252 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 Y2ZF}+=t%!@WdHyG07*qoM6N<$g1p~_j{pDw literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/3b239d96-a6cb-4f23-8362-9a7abe981ba3.png b/parsers/src/main/assets/icons/3b239d96-a6cb-4f23-8362-9a7abe981ba3.png new file mode 100644 index 0000000000000000000000000000000000000000..5e5f1e292330104e21383a6ad1e5d711ed19b010 GIT binary patch literal 4059 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/4ebeeba6-00cc-4eff-b383-d72e67eea299.png b/parsers/src/main/assets/icons/4ebeeba6-00cc-4eff-b383-d72e67eea299.png new file mode 100644 index 0000000000000000000000000000000000000000..b847b14b46a0d9e700f701ce60519c2b1075aae6 GIT binary patch literal 1034 zcmeAS@N?(olHy`uVBq!ia0vp^6(G#P3?%t>9eV(zYyx~jT-^(N7`A;N4_#gE_Y`Q3 za7mC~FoVWtUe>*mx$Zx2hhMN+`+Q>KT%nDR7cej|XL-6fhGg7(JNtFtV+Ed8X(q)O zCyqV;cfZSXUu9+NTf^gLrG572-DkoHA6Scb|9$n``~TIWCkkie>YbbsvT1JnN2ymL zMKQ6pC)OIazx=ZC+);Z+`GWXo#>Z{h7QgD7!kNDCYfg;q1mn+|$IL`RIaeB;;5Yxl zb%On&qyNoN54~=w9|>AI$`*Hv*YF&5?Rl;3T_^Tv-PDz(b^PINdw$$fxWD(D^BUi- zx!Y`)ndOzPeE;NL*5++;c>!+|MAyYXxR-iuXPM@9tDeZOjiHb8=J~vxlKDAgTiI!| z$Z7A{e?PpXduQuRRkk}ODH9pZc`Cb%9$3WYU-E6UmD1esuyUoVXQQaT%85{)pR&u2 znyr8EMTw87TyxDPa*$zG@x3}At@4P%) z*yy#xd=6#fc0QxsnSYHMQm5YZPf3X0_iynDmYrA9_o+9gL`5nXY)$zXea9k5+Mx5t zvP1J#PS{UmpZ@gr;)x9Vx$doaAixyt*-{;tFhldhkI4t~XTSO`8UASZSDlS>PcT3E z-89iNcao)%_%`LUMt(`J|GUqQ{u6a-A-7AIhQN;)S=Owz5eg31{p_bMGL5}b)*Z6p zd(CN~hWW_{y8;*N3JF~^e;7#-^b*=`9f05RJO&Q(o>ch z9VnQ^rTUD=V9pHZr5tP$dae#zv)Cl`A1HmdvzQU+)@qa@aYi#u%+p|b4Yx>OqQUA8 zt{e@CGrOm16eWZ$l-ZCia%PXz0)6KIgU?1SdJh&QyxXfLd7v@j{JxWCjS~K?RTHgD zd@!y0jt*nq%aaOiJdLyU)^R@PXq>(76{mb_gY<0SFAG;Q95}mIzx`?;L(D8|v3@^6 zsXLb=Q)8`nEI;{TnYXn?`PQ~~+wTTEIOn$M?=)K`nccUYzRwcrKlt}-({9fHiV@2U zFKg*l@NU1I`Gk3c$oJBj$?`f^tE#te=x9D$Bz$Fp!v^h5`r==9tmXI-$SZW^)6cU9 zv^RL4e#_EpCf5{e^LFWxEw0$=pHFx?Syr#I!Nl)> qob27V8dJ{dUA}sLUftLF7yQXA@40;0P80w$C4;A{pUXO@geCyJFys~h literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/51b5caec-ef9d-45ec-ad81-2b29b8123ddf.png b/parsers/src/main/assets/icons/51b5caec-ef9d-45ec-ad81-2b29b8123ddf.png new file mode 100644 index 0000000000000000000000000000000000000000..75cb4ee35ba0168fe772df8d8df97f9f0ff4a9b0 GIT binary patch literal 5427 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 L)m5o`WfS!uqZco8 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/58703cc7-24d2-429c-845d-ffd1e872e22e.png b/parsers/src/main/assets/icons/58703cc7-24d2-429c-845d-ffd1e872e22e.png new file mode 100644 index 0000000000000000000000000000000000000000..0a37b7c0f742157f81985c5b3d99c2400c1b60fc GIT binary patch literal 21838 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
Z$>*pf!Psy!i`q_T}B)4@=%DRss^Kx#4-hkb* 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/92e84473-9c0e-4cec-83ca-281e7fa680dc.png b/parsers/src/main/assets/icons/92e84473-9c0e-4cec-83ca-281e7fa680dc.png new file mode 100644 index 0000000000000000000000000000000000000000..6d146f7112828ca85febe0d086f98201bffc24fe GIT binary patch literal 23400 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 P00000NkvXXu0mjfoGYx5 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/93ad1311-be65-4480-b794-4f289303c610.png b/parsers/src/main/assets/icons/93ad1311-be65-4480-b794-4f289303c610.png new file mode 100644 index 0000000000000000000000000000000000000000..e83ce2025537eb8396ff141b1240de846ff49c6f GIT binary patch literal 1508 zcmV=eoYZP5=%WLKl#eBSw;7H zq5JKB4yU3Ld+WPc%MNv zKrEL^Dmxw&FjV(xj%lV*go_ZZ->}863Z(GbMkmRVlJ)Rf&jFt1Y-ZQ0?yb8g?+tm}xFcs7eu_ z3?H8nRGYY)hVYi|K#kf;c|C1@DjOLmt?m;ciYPv%%#6bAm6-uiL@C213ktVK1QJA% zTCf#vuN%OzLK`zvh1;W6E)Ye8GEBv0vCgH0hc_rDk3UX4|KAO5e8 zTPuW(T5t5-LkI2k9o(MLJfpr}`fb&1g|NeZE5uE*qbq+!ho7P()523E*~9kO@ae)y z2C&Cc>GQ-CIS2<7Hrzwgb1)fQ9`kxft}_(L76>xB3@#k>V`2*z_gq*m09KuqoC-3! z94_qC<2=`#{0#XWy|%tPZfpctSe%vPa;LC1#R02@BS!XmopMNB>|Ht7bcqR2>>eEK zSHCsLzDB)pc_AUENT|E0kd2SXn(_oRqX=qxC>qm6^4I!xRSu#NrOMc;SM~d2zTR14AxB8;)|V>B96VyHh?h`>cI8- zWW(Mn6G`Yn;kBu6V$tzn-h~swVtqH<;V}ZPcP`;N@OS2fusDPcgt|W?9I&DzZ6yue z8DWP7jT8$Uxa4LqVJZ5xE5-~@vHX;T=jn{Fgsv6=&Cs5j;s@0h1cjXN&~9UMvQ4aX z;`V4e`i^XzKr?H0nVONI^>4{WX*bJJQ+zQV#El#SB% z$}Ivj&di^cjaidPCoD|JI=fr*11*(Ktf~89*(e?Qvh2LP-u35XQ|ZL*#p-#rKPnq} zvG#d|54-H8`GppxzlGQScVzeKv8~Alv;QsGr*zl+Z~xoB*Zu%fVQCS=vdY>30000< KMNUMnLSTaNVbkjX literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/9c2672e0-c40d-47ab-8cd0-8ecd0542a749.png b/parsers/src/main/assets/icons/9c2672e0-c40d-47ab-8cd0-8ecd0542a749.png new file mode 100644 index 0000000000000000000000000000000000000000..9189c289be57f9dcdc3687595296b971eaa52483 GIT binary patch literal 5653 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/9e2fbc00-9746-4958-87ea-3ae10a33e8c3.png b/parsers/src/main/assets/icons/9e2fbc00-9746-4958-87ea-3ae10a33e8c3.png new file mode 100644 index 0000000000000000000000000000000000000000..18531a922fa5444f43f1c12daa577dbb42b446c4 GIT binary patch literal 18179 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/a470f616-141c-4d47-98ba-75ba720d9b94.png b/parsers/src/main/assets/icons/a470f616-141c-4d47-98ba-75ba720d9b94.png new file mode 100644 index 0000000000000000000000000000000000000000..41d1ec3591cce9287b96d2b8e2ca99c0215001ae GIT binary patch literal 1499 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 Hu0mjfY*|aI literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/aa5f6a26-8d81-4886-9836-0559e2fd8653.png b/parsers/src/main/assets/icons/aa5f6a26-8d81-4886-9836-0559e2fd8653.png new file mode 100644 index 0000000000000000000000000000000000000000..12aea4773df50dcd7bfc7cfe9a86aebf8ccc3497 GIT binary patch literal 818 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/c9bf7f73-1982-4c23-81df-0297539552b3.png b/parsers/src/main/assets/icons/c9bf7f73-1982-4c23-81df-0297539552b3.png new file mode 100644 index 0000000000000000000000000000000000000000..5ed91951c7cad8e7c0d71f886ec73f19dfa818dd GIT binary patch literal 1344 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 gyKAV~%A7p4PkfybdM*|mcMnVXHzdu~e*gdg literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/d5f9a371-2487-4e91-ace5-f00dc2c9ece7.png b/parsers/src/main/assets/icons/d5f9a371-2487-4e91-ace5-f00dc2c9ece7.png new file mode 100644 index 0000000000000000000000000000000000000000..fc831156e5a6ab9fa72a5520bdfb85b38a73949a GIT binary patch literal 6284 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/d793c639-4101-4926-a15c-8ec4489c80f1.png b/parsers/src/main/assets/icons/d793c639-4101-4926-a15c-8ec4489c80f1.png new file mode 100644 index 0000000000000000000000000000000000000000..ba7e0554197410a81a5fe78524fcef2cccb3be08 GIT binary patch literal 5671 zcmb`L)mIb@w8asIPU#Lw>Fyy!y5XanVPK@YL%;w@=?3ZUAw-ZNC8ft9hVEu)5U%%c zxOeS!&UyQ-z4pU?II(&#H}ay%^&G6G$?Hie3S5SQJQ;*^*-|Qk#uLdm(wU7ylnxC8?~cCOqe>*tKL=o*#MQk{|(NVHT4{%;|fch5qiBqJZ!0kULUr zn^>C#)r-Hl(kmGHGjP^iqgqXu6zwgCBC$rCm)6D=|;ypdQuZp4LZofgJO ze{O!2mDB2WbsiGn&YkD$;4zqd@Ws6D?>9TxEpGE1Tul7g!Uk>|tNEoi`{`&+RYm9E zB12z6Kj5?KaQ#DlacTW=Ojj2#;}eSU)QQNgy&ux~G#Oz=LO^&xNO*shSrd2Kz}2Gi zbt><>2zIe(xd2&as7Cy+8MUDQ7k?E%0E$D%# zKGBuTK+3^)bX10^!=5Du32t?b*!GwQD7h?#Ukp7}Nbt!EjRnITV-xY=F|6O%Qf>4+ z^+cN1zuM7Oy?$4f5fj5zM|M_IU+MD0FL>*xO-RUaKmvNKc$q?KyGfykTBoU@?jyf- zfa>sX&WQtg`EHLs{gUmP$yH}u>&~rS0r@c28%&7n59S5q)hXVeB25f3er;^*?JgYi zjt|eRh%R`vj94hq+>~dw?=qBj=Fbc zA$Q!UcIl{n*=}IKa7x}$%FFr~3Udn^i-znC9jn>gSU-;Wms~E;iJ6CkGm6yRQf<8# zYYze^;RmyD?_E$H{0nF|TGw_TDd4^vf2S0I+tO{J3{)9|82wA+8P%WJ^T3c-27!FW z%0a14uy=|M1Me@P1MCClvM&$cHXp<8Vxx-&AL7x6ABmG5?VVt-YS`ClJ994>Wa;Cm zxpeUM4bW@baMRJ@$@(966mnr;ejAMU~Db%SIDUywCb;p_sZIvJJq}(WIB1Ww0=zM5_9z z5?+;dvbCEyo^rJ8iB1N;N_@v!qQonoS4&sytO#%ne5icAA18<<5pvmgSHhe84$om} zDFvUMPeU*-9d@P`Fg5;?gp>!(n@uwdtXR)zpReA)3oU)}ym(X2&DY~({BsvX`f4;^ zhW)uvSg|cU*-OHqTf-*8DT64x?B!vn+>LziMl(5!dZFu(@TY6U1eNX_^`?A+g`Pl>Cun zWJLvk>Jjey>Wl9>&1fT~bRy8-hf@oht)_G;3c?I;e&yg~ODJ7O3WKXP$ULKj2oIu= zkC*_6s<&0P0}K7Lisww1U;Cf@Qpe7_=R|qo_c*iRZOjgpTEPg>sg35P6J47|d1% zKzH(_e?p2j=-(>Ft@fIR!qTI;)XK-RRLV#&Y`<1E2DdAV)oo+$S)3g<7^hRfuP;S+ znqMbwx)19x2a*LB4x@+1)OMR?V@uac>b3l6J>0cr!{ESpO1sdn>Mp1x}N#{^;?4_vE?G7eX4Z z(Ae&yZ5Dc+UO5j>N+|gJ5zi#<;k5R7GuElC!8wpaRQ6BVCxhrZKk+)^I}B4-S>D_G zxQ#B^biN-hwR0=zT9gx^`-|C6kT@<8W{&$@=wN%~vQ3jymxx`lVxQ>nAg8E+!~5k= zbQ~XKW5GjB?!V@nLBkNF7$|zTS)@Z4PDC5JPnwOMCMBSAN{0$?@ymDoxNJ`PK#rFs z3vgB8sa$k>`GV#4xO0_v;5sL50q0oza9P_$^w);Ylz;*e-?i9iOJ$=0r$ zdK>bSWIReW{h84zXn2|188n~!YdOfqZ9^&kGS zNXI}`E~P)UEcIt6L^sJ(a8rOeETK#Gc*bpY@3pS3dEV`9GB)84Gj1UzG;ymY_R;J6 zZ4?hI3q|;MsW~cJxIBACA96zCb@UNyL6J;8O65tXVQZQ61M4+SUURuNs6v24?x++g z44y^BOuet&N;oOkO5AQF^Bg9i1`hD4A*3%$|MAAGS2SC=!8sqVhd4RRi$NuHN~~_| zCFLBl^{Ujvt!K?}&^-4qFJ4NJr?X1hI?zt{m^Ll_+zH_y*AzT5yV}E=tEwyg^CiKq z9f9m%t|Z@?V-5oyJss2V#NGGY6L%5pMZMbpB{6$3mB00yJX~lR$tb?gU!uQ&T4sl0 zw4|88v}`UN%RkP)Qjx@(BW`&g0v?5@4tW3?%C$8p%6y4wovw8tk|hJR*Z+U1fq6TD@O1*0b4&se=`V21t^6)SE{K^ri-e^Ev99W z`qo-FK4yLyy*AZqh&+}!Y_fe5XLq+#>00O=B~+og2(1bf?pDecsziL~3mJk>`RGmU zP9Zf#bsMJUxBb+w7LvI#a8b*>BC|@vZ^upa+q5jEzWQ_e5eV#@zoHS*)>MrPfb4dD zTh>UgQsPMPj=FKoM1JYCDn=nI+lK^!I?4s_qc39HTZJPUs?lJ79xywNAs#^9ek4nY zG;jJy%_~A_1EoU6k=2WihIVCQeWqEKFfQJ;pH&cyF+H8LlcUF`V69Z@2n6-G6}(sR zwE>IebW=|FwRiQo$3)it`RsJ8u2xX>KnCU-7E;imuHDljl&S}d53oj&>cojNuJa9)#y@zVKej7KkSB!u|Svn{>8%W79}Gz?UF&6o-Gj z;jB|=Z<`&<0Wxm}+5m;k*h<$>fT;}Q@halisxQp>ND~UwfwK~WGcmWYO6EGrpFi-A z*#PKctzz7n!co)7%-7PuLer9utQ&>`a6>pa$M`@ro)d8?wDFBCEA_f3>h`y5ab&D6 zt*d;|YB0`qx@Cx57@2Z(`d=QfNjdCUqi8>Eo|CYxA^a{4-V`>9o3ZlXi$2o$dImSR zH^n5~goCDXyb)}uA_%nW*7U{#{B&(L&TDrrXhb3~QN0pE^q=%;U|2vq@G-<~98^6! znJJE_NOB4tIiwpcN^_I2H3Ts zMSbBEg$jdu(5WgzJ7hCW&8(*t zPbsVaTj>h3zGcToK6B+gvDpv8C&SeIR(Lug=2)&j4SEV(mbPW zOy8gzIH~I*%cD3ueuR0}l3XEH(S0$KdOn>tEN_vKylj3!_%0*Rbg3@4~Vv^+`ZVY|K6{+oFp4cs#OAxhbpDNBBM= zVytGhPtV6vdHP6DIf%-A$|7Trq#L``Z8{fj6kG-Xjo*F`%lu^zG%+3+r6MA@G+;?a z3ag#iJj1_}z%32xscGBM9h>w#XzFJ+anAkbjf`G5mm|C$2lbZ@tT8rv45o?702p~F z+3L}yW8oVwuJ?OQol@+hS|z-Kg2QIaH`*WKDhC%m$lu6t;fjpkqi!Vh3IvDlQwF2< z_xdmCsoTl0uhLCP%K(Og%kDP)5#O?B4lDDxDRzv$)NnLEQfmyyv>+nBpRxV8g^-g^ z_K_^YcJX%;6C#6jWYU)cMatE*r~BCDz5WoH=$fcIp66&u!D6bK2psPN>!AE<<-0Q< z&a21vHx~%xde)(XUr4uH`MM9a!j&iw65o)c70A24wH0IEp`kh(0ukluubS3FjTf|* zK#+8n!a64T5D%G!t)slPBQ8719N&zP+ zQR|MyGfT%OXuW@A&=*5W0@DWz61Aw2ZKYr?;JhR?Q3j=p;n0_+@P`8}G_lT1OW={v@KC(}XshAB+uGBh6vyKL&5E4y6lr1=T{C{?5UPbkCLOC; zs`D~1>g8N(O_H)RLU20=easU-y4)U9Q{=bsW`k$_N#1p;Ny6MIcf%^qr`!mFuTwUu z^Y+snD~RFK|M*HlL6+~i1gcI6`COi$%(RAdg(W{PMh`N!sjR^tdYWfiC?&HEcCr`8 zGR?6Zper#k;SolBU8^{bO6O{GK4+Clzi@bpdsupgb&Y^I>v+7bXqQdKSgJDEJW%;R z({PjbnF3rvRB`MKSvE;QZEzE*?XQtZ_vY;tq2cUV6uNg4YfkI>61@aL-4&X;q>j?_ zg^sk29W6WxYPX%U2`0VcI`jCV$dF*%@*vUtwlApkjOG^he}-7tZ|(7|-Ghih9*M|c z@XSNL?RcC#jX3`?NLHWf;MhLLbbi!2%rs~~;sqAcWp59U`k_Szw)EtXt0}^d!8mIh zy)m74<;F-A`Ae5d{3G@G4iI(P=xS`*fe}Lk)NGUM-hb2)q`QoB!u}n_jEU3|V<7!x zGdjZ0P_uE-LMJGzBGzkQCy})T4t+OAmUSDFn`FcLxHk6NRUp;U9L?F|uG7b0F|OIg z4#EF4?D1EXe~F1C>JBmpigTw=xzJ1FFaA*$;gw^L?V&+IcGvU`b;-@Zzxx zZ9iEEkOJlQM$TsUb?wi<29`S2%gB$1ryT~mcf#+!`4vWGb*aZ!V7DEeDp@K(Dz5%~ zkW>IG>~`P@RDkVkbv8vcWhq~^-aO>}T{Hv~l&dhqKM~QRHv}C&^D>F4luxM40Mcy5 z$zSxX+6G2=u+83O{k?SKo1 zH$$`YBjx8zpMHX@ojs7>SZO=wtOJ-Bw36xKeOy#`dgNuth`l>`h1UQr6h0XaEBIv4 zNrsV)JDMJ?sCRKQ>3puZ1&(w-x|_CQC~+y|6Ms6<3|4%BzWd5KJHAgsC8FSd;vr8h zWI1TYgCLrD1!(a?$@OgeC;vb)j1WzmM6mM2Ye@q_Mk1@ABhHN$39TU$6^T@VmpR8< zSdq*9%mHl1w`s2GqrXN)`BVe}9`93y@OJK%QnYqQy-v7_8{WjJ+ArsE@g%qV;^_FJ z>8}!YBbf85`&UDV2mmyP%oZd=%fNQi^iLiDmq@R(;M7Um4E4Bq?( zphd{Er2sqW&i&DeaHyI&IQOx;e^!KMjH(JhEuqMTXP@Sf=JR03giz)zi()-0EoPG3 z{_WC~UEN;CZ)|(+t*T7!X}lHZH4cpEs_u&#fy~XwFOh$oOWWz3u^V6FrXk2D{1lP8ieg^u;(%@gq2x2loM8CSrH z6`4=Dc0cdk=_=tnci>Jo<;YKUIHY)_S?+w!b|3%2a?2N>yA~_`;gg{Y@zK)k5uZ$3 z-Te9IDe+pUf0D}bH?FQe@@Rywn<64rXX~W+0V@^e-ukNeQ?Q6 zg;xl)3(&N!?Z}yX$WbS#F3MBWfM8jsK~E#bOdX*@;CoFwL`O9AJ2cxqfZEa@fUj5- z)ZJD)ni~`FvhBqYpNhI;cv^N7XV;ndz{*ko6#gSaAJ>*}u%dH&rR6*)qfsk@xBqSL g|5-&wEN8^VTys{LdAV)>9>8eo$~tfB-`Ga|4^_lTUrb$WP+)KW|NkyQQ!74E zEI(3!>UCxS001F$QchF-_v-Wc{Qdar@%#7h`R3>D>*(|N^6>8H@8;*~?EB{YQeJe< z000BFNkl<;@F28-g0y2(`qvLp#r!jM} z*bTP3fWKOlT*TL1c`fzH%P@)3CR~b!z_^LH#L|f@!kEfNIq}Ob#CyQvQp&H~+Twv& z%0VMl=8ElL+z|P73pSuE;3|vydck}HV7Gz<#V9NIjOC6kwt=w+ib|b;&sr4EPPZI9 zWIlAwVgYxYnD6z!4lITb!gpF)iw%mc55C(f4{uStn@dKrFrs+WteWj3!TcHuGhm*; zZ`HA265D3Lyl}7?Fv+0>b}*Rp-Zcb{GHeFSOZl#SJa{}v&49UleZ2uJm;44W&t*I3 zJHURU8645PEOQ#ozst5pFe&3PYH{80?zE-aUm-y~Xam#kf~Gi4hyh)?T>a|?>jJ0V zzpnFuy{l4mk2HbP%gfviVNaCnS`WCCYzd(vtl6FHcJLI>nRJ#8a4U5yFdPJo ze?c0+)ElHev8$Nu#MS^#06$70nN+{LzV+b95l~DGKV|y49~^+;n0WgQZ8!mo?z(iaZU9Z-x}-@H0;MfzOy1cL0pRjLrBeXjs)! zM`qfs8Jr#|!~I}>1!7MWs{$Df;DSlP!lP@>l`W@}RI+e;#a}+K4zS-LA<6dos{MV? z;(-LeJOP0km6uEJLXXcyv;Q>@B!dtxW@v;}c0HWMudo}n;R>K(oTT(H3mSnjeM z4-S}_bQ6$mIvxz<*A54R>D!~hV8Z%fFkBos7My!#N&}Q(BgGK7E^sWkXpoVDSCJtj zm9~*64W=!fPf+*uY-_}Nu$Rr%%!AI|+MED`3H2V1(wp^D zh8FZ=Y*0Lm{yP}2_zT-WwkQ@4VLQDvWbvcM#ozE}Z{74oM+e&?#Ygn)Emr(K p@TvGzd@4Q_pNdb#r(*qz{{Xq)8vyqKne6}o002ovPDHLkV1f~*OQZk* literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/e315c8ca-a6d7-42e4-982e-e042ff13709d.png b/parsers/src/main/assets/icons/e315c8ca-a6d7-42e4-982e-e042ff13709d.png new file mode 100644 index 0000000000000000000000000000000000000000..233760e07539b6d211ae1277f72044a5cdf6bd15 GIT binary patch literal 11614 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/e495c653-5577-465a-9857-a874c8c6f7a6.png b/parsers/src/main/assets/icons/e495c653-5577-465a-9857-a874c8c6f7a6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d44328ca23f1207645f9d8601b0910981af4d77 GIT binary patch literal 5661 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 WNIzS+FaAI0a5@@>>J6$6(fxlq%tsQ zOst(~>v1?hq}4yzduf==8-+&`7FykOb(QfJ?M_&@MKr3^pz@`>Nv20oj124bre^!@ zP#}DjBt{(Ng=<2mcUvo>x$Agb+=X^i+^xkKNg`vr-Zi=&qoHa5!*)l_a zP1nJ29t9Q$7l))}^G@kKd$4ogyN8dT$M#(RRQLV4R7jT^bB$8roR@8`dmL?cXTF^C zy;FIOlID@;M<%nGdi*(2dh@CIxzu*nIOC)zMxT!e+BxoQe=3(I>a03Xu}^E2+t=1T zr@5Z%p37Q$(5m(m=V8}e)zhW7l0A|*HJ4~AOY(*UHn&R5mC{r*Dw+S`L%-EOlbtC= zp$AWFY_JOP=#&4$UzeUeZQ1fWUJqFWDmK3DFI3pUy=C^czqL8H-wGf2&l8gwTfdj} zOzot5Z?Y~bCuB(P*zqpwlU%`0<{q1ulN2o{&EFQF#rQt`i!W=!4>69lJ9n18EBwXq zL}T?+=?4!4W@rSzE$!d=ySn)IcVG4W@;=c;(?vV{KoP{2|H(?D8gCb z5n0T@pr;JNj1^1m%YcIHC7!;n?9aKm7-%-v9Z6A*?xyWgBy- z^cLoDAP$4$O<*><7&;%M9!czUb8YrUE)%0Yd$RPoC9n2RU9eZ@hEn3~#?`zxk?>B& z@Y_<}6RzZm%v~J!HlVlZ=-I&a+qwb^ZmMv9o#dMQ(fE~RLu>p@fwT9`?p(|&(C3={ z@Ox&V)0Q2RW^XEXFta{kS^B!Xcb}>c*X6ZaCZ#=PVcx&lbEWxp<2u)arzV^~&JXmK z%|a`VghJ*GKT7!yXh?X=^jb9p8n7j(3QLzTY{+V>i;_9;=+)NCkJwjq9sK)aZRC6Y zv~SF;*;?Nd(%!GLX9#`$CpYcehu`@J1_|gMD)1ygyu2o ztcerR;rlLS@HfG7$3G*N;O=XIZ(VoaJu~l3&6}1C(;f99e}q}J57lm4{+eGSg8NbJp+v7yl@@L|{Q*lY7b@M)SbcFG@J- z+1GlnHLkd_*Yv`&ysI*NjFsoV{`hkDAf{yPHgJ z-d(%yk#BwNlz_S4BxgT)m&SZ=Wr9=buIE`s=Qh9mm-#xub&dA=yA4TpYr~VbuBQJCn*Ne`p`+ugor=DOuwX5*esjLOfSKd4}<=fQEcde)Mw&W=`tBmQo zWv}&_pFDVbS!QqSML+(A#Z7)DUnUe=C5ydixvaDEc)nYspUtu<_4~5?PcVH>w_+}d zZW5EyxiV+M9`S7tj%3Ugym9@4eL$16+UgHHqA^Dj3vdM)$iigd7!6ICmMk zy?xBpfj`a5z9vIhw0-74pBC@yy2g|=Q3+e(Y5;iCsFXUI*~Xpp&lbZvZ`+bHZL|h3 zI1pU^8-N5zML}awR!6t=!hskfb1sO1k zV3XZbrRnMow%mjG2ba@2H70*+Z|NTK0v9)T-)dVn`|jp)l*Haw7|I;0@*|mxmlxF= zOxLzbe!AI5XxWQ=0ha-j+TA0kXe~qMITxSG6k$Awc%<{JTb5_M{ZCtQq`_hrPLQ&9 zN1du(ZW&%!z~{`t`%Rs0B%4jlM~ht#&K(rC1KU~@j^{pLLklYHTljr-%PphYvc;F^ z{*Bi(aY6unO!l}RX*pA-%vo=W`1sqFr+WZO^C&Y$Y}x5r19!a~Q6`HN=f`5}(ujZi venPMBF5vkL{#t}cBoc{4B9TZW5>@>I>4rj5NGC2P00000NkvXXu0mjfgNeaZ literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/f48565e1-14bb-4722-9438-8963f4af46d1.png b/parsers/src/main/assets/icons/f48565e1-14bb-4722-9438-8963f4af46d1.png new file mode 100644 index 0000000000000000000000000000000000000000..f1a3f095e8fdeecfdf5ab22e29814bca9e6549c2 GIT binary patch literal 3765 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/f5890e9d-b71b-4d71-8688-7214ff7974e5.png b/parsers/src/main/assets/icons/f5890e9d-b71b-4d71-8688-7214ff7974e5.png new file mode 100644 index 0000000000000000000000000000000000000000..77d7f8fef211da84e095376a6bcf6e676f240d48 GIT binary patch literal 1518 zcmbu9`#aMM0LH(fw24OL5-BAjHcdCja%;;b8;vncW+#Oy%VkrTSe}%Q%ckR2F^fVd zmxg#;78;dHE}3iPu9YxD&e?H(IDf%;p7(t}zr8LaqVL#iR>!nh( zSdZwdlD7b`)e3{Ob@d+=dr~Wkjd$!xd0MBsA(Jil&>0%NMSZoM!&(DvXQm;Ta`uC+ zf*RWA=6EFyC}}mPnY*%|D2|oRbe6!sSn94@^Y<#}t3RBdR(G4`tE}R7vMdIJKH5vD zTybjoLlr?|-{3`qla*4cyj@m|CLH(rzdR@6y~?9^oI&^-_U()2ibz7^Rj5-?zf z379XH%aLjY^Yd zL=~rnTA*WY2h?Xg4B(`6@b^{T?bgm(h+Rz*JCxp0&h;cdphs#y{R{+sny0d7R0S52 zLA&q>C&__3tlV==YfE0cN27PE+_Z{dGYmAqrKf6GLje{-icrM&B{M_J#LwIPs;_9( zv-FWKTa0>EZ|Mm54)=odM?z-Dr1<7Gw?nf>8+q4IZjrbFDjl zv#Vm;8O4lj_NkMTb2W2HuSUG0OK4abr{wa!rsFE z+N_KKzM1{9f21e7_AA0z@pZCVFVY5r)YnkDumc~QuCT!RB5cjN*f@my!ekbzl(TPQ zU0i|mrT2P3@!vl&lM1{e_+)Kb8AS)HK}=|{FPV2e#Y@&q9i{}+~{Bv7rsS>ne1;vc%;H{QWY0{j?PXI znPr}C$i@sf?+VBv7VdC?3qxbw6Ug*yqVe7r^K-|2^tX&z*0}bK`&QeI9OQJ!@|wQK zyAYOQl43hSf%L2+gS(~k2?rYeTk`gL*715QNzvGbE&FTbM97gpO%yOcRt zGO-YsIKj=V)>rhI-Zn7?Cq1rgVob&hUUugNourGO;lYV4mUrRG@pbZ4iha%#hdq88 z!A%aa{YD#_Gf4J?8;mwzuAn}>6k{IS#Pgx&ZivEE=w|7tQ&Q)f!f1|)R=OBZA=v{G6*GWfjxtgs{fPVr&}`M;;rwn(6U6@rfdNW3WqGUBgg#% Dkj~-J literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/services.json b/parsers/src/main/assets/services.json index 143886a0..50a321f5 100644 --- a/parsers/src/main/assets/services.json +++ b/parsers/src/main/assets/services.json @@ -1 +1 @@ -[{"id": "0001f2bd-6892-4766-91ca-bc15f61062aa", "name": "Hatch", "tags": [], "issuers": [], "match_rules": [{"text": "Hatch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hatch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d7943718-d16e-4086-9a45-39f3ee555776", "name": "Hatch", "icons": [{"id": "da46ca2a-3761-493d-bfdb-78f3898e1fdb", "name": "Hatch", "type": "light"}]}]}, {"id": "000dee19-e7ed-4888-ac9e-a38c1cffcaa6", "name": "Etana Custody", "tags": [], "issuers": [], "match_rules": [{"text": "Etana Custody", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Etana Custody", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bf300482-59da-4d69-8860-a7a72c48bc3c", "name": "Etana Custody", "icons": [{"id": "24976f58-6025-4302-9f5f-74095c041f34", "name": "Etana Custody", "type": "light"}]}]}, {"id": "002fd04d-4046-4629-952b-ee92f17e2e09", "name": "IONOS", "tags": [], "issuers": ["IONOS"], "match_rules": [], "icons_collections": [{"id": "a70bea5a-ea3a-46c0-baaf-e837a66aac19", "name": "IONOS", "icons": [{"id": "a0f2843a-b865-433f-8267-45e57540ee08", "name": "IONOS", "type": "light"}]}]}, {"id": "00576ec3-12ab-4a5d-a024-762c5c394d57", "name": "IO Zoom", "tags": [], "issuers": [], "match_rules": [{"text": "IO Zoom", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IO Zoom", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b64d17ab-f1ca-4ba1-8e61-af8133ee3f88", "name": "IO Zoom", "icons": [{"id": "22a10984-19c3-4668-8fef-4ce5cc9990e8", "name": "IO Zoom", "type": "dark"}, {"id": "9f231dfd-9ed7-4abf-9690-33976b3832cf", "name": "IO Zoom", "type": "light"}]}]}, {"id": "0149357f-7f61-424c-adf7-5dafc8e077c4", "name": "Airtable", "tags": [], "issuers": [], "match_rules": [{"text": "Airtable", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Airtable", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f100a5ca-c5e7-4336-9af6-c9be4ce44641", "name": "Airtable", "icons": [{"id": "5e8eecba-e92f-40c8-8192-cec04b0599de", "name": "Airtable", "type": "light"}]}]}, {"id": "0217bfa3-c811-41ab-82af-e82e3519e7da", "name": "Nutmeg", "tags": [], "issuers": [], "match_rules": [{"text": "Nutmeg", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nutmeg", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3fff0081-bcf7-4e48-8d91-7f942713dc6d", "name": "Nutmeg", "icons": [{"id": "2aab8fab-e48c-4861-ab0d-f3ad78d9036a", "name": "Nutmeg", "type": "light"}]}]}, {"id": "022b8e24-46bd-4236-b522-f48007a6f736", "name": "ANY.RUN", "tags": [], "issuers": [], "match_rules": [{"text": "ANY.RUN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ANY.RUN", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "ANYRUN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ANYRUN", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "15a6d950-7998-412d-b7da-9ea09beae210", "name": "ANY.RUN", "icons": [{"id": "092e971d-bf5e-4d35-b5c0-f04a1fa1f948", "name": "ANY.RUN", "type": "light"}]}]}, {"id": "02c27503-888f-4a86-bd1c-ff1142822f7a", "name": "OzBargain", "tags": [], "issuers": [], "match_rules": [{"text": "OzBargain", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OzBargain", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c2db9410-6053-4d52-96f3-4acd16b7cf6a", "name": "OzBargain", "icons": [{"id": "3c336a67-7168-48ae-b7d0-76342b251a93", "name": "OzBargain", "type": "light"}]}]}, {"id": "02dfcfe3-b403-4130-a26b-3fc4c83fc4ba", "name": "Airbrake", "tags": [], "issuers": ["Airbrake"], "match_rules": null, "icons_collections": [{"id": "9f4e3ac3-c09f-4229-9f99-27b94e6e3372", "name": "Airbrake", "icons": [{"id": "4162cb46-35e2-41f6-92db-163542cdc93b", "name": "Airbrake", "type": "light"}]}]}, {"id": "032c2fd7-14ab-4d22-8b9f-f7b77bdf1146", "name": "HappyFox", "tags": [], "issuers": [], "match_rules": [{"text": "HappyFox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HappyFox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5d91d726-72c8-425b-bbe7-41a1eb6c1346", "name": "HappyFox", "icons": [{"id": "74132e80-5874-479a-be16-40426b7afce2", "name": "HappyFox", "type": "light"}]}]}, {"id": "032ecea7-6ffd-4a28-bd8f-38d583c645ce", "name": "Egnyte", "tags": [], "issuers": [], "match_rules": [{"text": "Egnyte", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Egnyte", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c62c308c-926e-4b54-bfcc-241c4f384758", "name": "Egnyte", "icons": [{"id": "a29febaf-206d-465b-91d9-3601789c774c", "name": "Egnyte", "type": "light"}]}]}, {"id": "0336adda-650e-4082-a24b-4a2165c3a043", "name": "USPTO", "tags": [], "issuers": ["MyUSPTO"], "match_rules": null, "icons_collections": [{"id": "13838d86-6882-4851-81c1-272b128feb5d", "name": "USPTO", "icons": [{"id": "8a10866e-9a2d-4014-886a-092e3329dd80", "name": "USPTO", "type": "dark"}, {"id": "da8f89ed-7f3f-4aa4-9c84-31d74b87160d", "name": "USPTO", "type": "light"}]}]}, {"id": "033df8c3-8160-4b6a-8ce0-c2be0460797e", "name": "X-Plane.org", "tags": [], "issuers": ["X-Plane.Org Forum"], "match_rules": null, "icons_collections": [{"id": "a2d05cd0-6c88-45ee-9997-b77adb726bfa", "name": "X-Plane.org", "icons": [{"id": "678c3721-023e-461b-8b81-fce2f238d7fd", "name": "X-Plane.org", "type": "light"}]}]}, {"id": "036733dc-870c-4a5e-b0df-f4dde5cc2a4a", "name": "Trading 212", "tags": [], "issuers": ["Trading 212"], "match_rules": null, "icons_collections": [{"id": "90ae4dbd-22cd-491d-9211-347df50aabe2", "name": "Trading 212", "icons": [{"id": "006a974f-48c9-4c94-b913-45dac870b52f", "name": "Trading 212", "type": "light"}]}]}, {"id": "038191ea-9f3a-4b83-bc04-c2e55b9b08ca", "name": "WEDOS", "tags": [], "issuers": [], "match_rules": [{"text": "WEDOS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "WEDOS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8858b30f-9416-47b9-8eb1-afef063f3203", "name": "WEDOS", "icons": [{"id": "1353934b-1711-44f7-a0c5-81e4f2169792", "name": "WEDOS", "type": "light"}]}]}, {"id": "0390ac2b-31bf-4179-aaf5-2e59c16f6dd8", "name": "Toshl", "tags": [], "issuers": [], "match_rules": [{"text": "Toshl", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Toshl", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dbae7c12-fe87-4979-838b-50e0c77d6e55", "name": "Toshl", "icons": [{"id": "a46f5a23-4845-404c-a49c-c0df74d0f56b", "name": "Toshl", "type": "light"}]}]}, {"id": "03a9aa26-6b0d-48a9-bac8-d068d52b0171", "name": "Legal & General", "tags": [], "issuers": [], "match_rules": [{"text": "Legal & General", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Legal & General", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Legal+&+General", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Legal+&+General", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "670dcfc9-9984-46e5-9e4c-0bfe3ff538f6", "name": "Legal & General", "icons": [{"id": "38a06918-90a9-42cc-b6be-6358f0e37dff", "name": "Legal & General", "type": "light"}]}]}, {"id": "03bc1020-723f-445e-b9a8-530b8c37cc71", "name": "Stackhero", "tags": [], "issuers": ["Stackhero"], "match_rules": null, "icons_collections": [{"id": "236f8ce2-36d4-4c65-a7db-645b2be0261e", "name": "Stackhero", "icons": [{"id": "823b2ffb-fc12-440b-80ea-a89fce2bb926", "name": "Stackhero", "type": "dark"}, {"id": "9c775e93-f629-47c1-809d-da1e08b44e59", "name": "Stackhero", "type": "light"}]}]}, {"id": "03ce228c-bde7-4ab6-bbe2-94b85ef4b3cd", "name": "Outlook", "tags": [], "issuers": [], "match_rules": [{"text": "Outlook.com", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "775511ec-6424-401e-af3d-5af729e575a7", "name": "Outlook", "icons": [{"id": "e7687160-8a86-4ca0-89ff-67bb12133300", "name": "Outlook.com", "type": "light"}]}]}, {"id": "03e91fc4-2c54-45ed-8756-290d9e4f8c2b", "name": "Finnair", "tags": [], "issuers": [], "match_rules": [{"text": "Finnair", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Finnair", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a79b0811-48c9-4d26-817c-796a88fd9278", "name": "Finnair", "icons": [{"id": "13081885-7ebd-4c40-9568-0e24fdbbd355", "name": "Finnair", "type": "dark"}, {"id": "9d735c4e-c23b-4b45-8b4c-8578d985a3ea", "name": "Finnair", "type": "light"}]}]}, {"id": "04246e03-1bf2-430b-9beb-8820a57caeab", "name": "Blacknight", "tags": [], "issuers": [], "match_rules": [{"text": "Blacknight", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Blacknight", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eefc1a8d-1c82-44d3-89d4-5c114b40fa37", "name": "Blacknight", "icons": [{"id": "0b79c895-afe3-4588-af44-fd50e41ce7dc", "name": "Blacknight", "type": "light"}, {"id": "25f13b8e-bb8e-42e9-938d-0390bf8d51ca", "name": "Blacknight", "type": "dark"}]}]}, {"id": "042b2e57-dc5e-41ee-bc5a-9482af8a2c84", "name": "Swyftx", "tags": [], "issuers": [], "match_rules": [{"text": "Swyftx", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Swyftx", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "064aeec9-3b93-4491-ac6b-5bb621c0b668", "name": "Swyftx", "icons": [{"id": "1c0e4234-8f9b-4744-af70-3ed3ccec814a", "name": "Swyftx", "type": "light"}, {"id": "e91bd1b4-ca22-4fbd-b22d-6963f358493a", "name": "Swyftx", "type": "dark"}]}]}, {"id": "043d0156-95ac-4d35-b9ea-7ca2cd8ea8af", "name": "Aternos", "tags": [], "issuers": ["Aternos"], "match_rules": null, "icons_collections": [{"id": "f5b2dde6-8f5d-4ca3-9b19-d10ef552d8b1", "name": "Aternos", "icons": [{"id": "b57bc046-633d-436f-b28b-488d2839691a", "name": "Aternos", "type": "light"}, {"id": "bdaeaae4-4d21-4662-b347-845e9fe182b2", "name": "Aternos", "type": "dark"}]}]}, {"id": "044d1095-ede6-4033-938c-4a409ab3a2c6", "name": "Ring", "tags": [], "issuers": ["Ring.com"], "match_rules": [], "icons_collections": [{"id": "97f2c094-5a55-4406-b06a-3229b0e08db5", "name": "Ring", "icons": [{"id": "26d95dc7-24b7-4de5-b777-b190e085a596", "name": "Ring", "type": "light"}]}]}, {"id": "04e370dd-b2d5-4998-8a21-02b65261355c", "name": "Customer.io", "tags": [], "issuers": [], "match_rules": [{"text": "Customer.io", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Customer.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e76ede36-b83c-4840-a822-6b1de8058ebb", "name": "Customer.io", "icons": [{"id": "4cb25e6b-07a5-485e-b2a5-4ef86f965cb7", "name": "Customer.io", "type": "light"}]}]}, {"id": "04e4ac3d-e993-4d93-bfca-baa38a534698", "name": "Barmenia", "tags": [], "issuers": [], "match_rules": [{"text": "Barmenia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Barmenia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e5d554bf-f48b-46d5-b108-fab3ca86392c", "name": "Barmenia", "icons": [{"id": "25cafe3d-5099-465a-9298-7e644cfc1b60", "name": "Barmenia", "type": "light"}]}]}, {"id": "04e7f038-8903-484c-b4a6-2943e39b5625", "name": "Black Desert", "tags": [], "issuers": [], "match_rules": [{"text": "Black Desert", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Black Desert", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3586a32d-147f-4221-9eef-9d981485b118", "name": "Black Desert", "icons": [{"id": "292cf267-df8d-4561-8091-5dd3e67e6fb7", "name": "Black Desert", "type": "light"}]}]}, {"id": "05f01a81-966d-4b44-a264-1e8e76e58011", "name": "ProBit", "tags": [], "issuers": [], "match_rules": [{"text": "ProBit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ProBit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7e33e824-fb2c-4a67-acf6-a0f857915342", "name": "ProBit", "icons": [{"id": "485e8039-77fd-4e32-8f74-7a7ead8c1dbb", "name": "ProBit", "type": "light"}]}]}, {"id": "0642640d-52f8-4d2a-ba7f-b2e98dcc4760", "name": "Tibia", "tags": [], "issuers": [], "match_rules": [{"text": "Tibia", "field": "label", "matcher": "equals", "ignore_case": true}], "icons_collections": [{"id": "9a59764b-6e14-469c-aa17-d78652774dbe", "name": "Tibia", "icons": [{"id": "d4f496a8-5e47-4efc-8cc6-14bc1c499940", "name": "Tibia", "type": "light"}]}]}, {"id": "06458fc0-2115-4693-b92d-7e0456c115df", "name": "Plesk 360", "tags": [], "issuers": [], "match_rules": [{"text": "Plesk 360", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Plesk 360", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "62dd1965-0868-4b7b-9e36-fe7170643ed7", "name": "Plesk 360", "icons": [{"id": "9ca2e787-5155-4862-b508-26b104e9b9e5", "name": "Plesk 360", "type": "light"}]}]}, {"id": "0658227c-ef86-4948-b737-ec1bfc11cbbb", "name": "MailChimp", "tags": ["intuit"], "issuers": [], "match_rules": [{"text": ".mailchimp.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "236dad43-1697-46fc-ad86-761702f14307", "name": "MailChimp", "icons": [{"id": "ba5a0a16-bdad-494a-8ef1-14c5df2bb185", "name": "MailChimp", "type": "light"}]}]}, {"id": "06748548-0a16-4215-964a-20135e373cfa", "name": "Cobalt", "tags": [], "issuers": [], "match_rules": [{"text": "Cobalt", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cobalt", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "484cffd9-3295-4bd5-a344-fec8be73d53a", "name": "Cobalt", "icons": [{"id": "4a5fc381-123c-4ad7-a2c8-44b1d1e938c9", "name": "Cobalt", "type": "light"}]}]}, {"id": "0680591a-0464-44cc-8546-d61666088dbc", "name": "Home Assistant", "tags": [], "issuers": ["Home Assistant"], "match_rules": [], "icons_collections": [{"id": "7db360bb-425b-49c5-aa23-c0cdb2129a77", "name": "Home Assistant", "icons": [{"id": "cfcecddd-b63f-4411-ba56-67ce3b0cdaf9", "name": "Home Assistant", "type": "light"}]}]}, {"id": "0755b13f-d3d1-43b0-b6a8-4348519cbdc7", "name": "AdGuard", "tags": [], "issuers": ["AdGuard"], "match_rules": [], "icons_collections": [{"id": "fe37e55d-3a49-4b40-b974-76b89dd97d9a", "name": "AdGuard", "icons": [{"id": "38031d64-8dd9-4d9b-8d30-4c6f6c07dc2c", "name": "AdGuard", "type": "light"}]}]}, {"id": "0777bbc7-ac7f-4ef0-ab3a-a5a3d8d29168", "name": "T-Mobile", "tags": [], "issuers": ["T-Mobile ID"], "match_rules": [], "icons_collections": [{"id": "c73afe02-0141-4165-8583-3bb5c0c5d039", "name": "T-Mobile", "icons": [{"id": "45203fbc-ff79-4098-b0af-cdc5c4237a7f", "name": "T-Mobile", "type": "light"}]}]}, {"id": "07874658-2a42-4532-b98b-cf1a407b5834", "name": "Guild Wars 2", "tags": [], "issuers": [], "match_rules": [{"text": "Guild Wars 2", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Guild Wars 2", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "330dc006-2763-4a76-8a0f-ba8ce55d6dd5", "name": "Guild Wars 2", "icons": [{"id": "357b3bdb-c246-4fdc-8ef9-9cb95e124c9b", "name": "Guild Wars 2", "type": "light"}, {"id": "d41aa2c1-57e9-4a27-bed3-907c9d44f5d2", "name": "Guild Wars", "type": "dark"}]}]}, {"id": "07df90d4-bba5-4a31-b62d-08b04d631132", "name": "Digitec", "tags": [], "issuers": [], "match_rules": [{"text": "Digitec", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Digitec", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "71b1d34a-1332-4786-8974-431ee10f06a6", "name": "Digitec", "icons": [{"id": "c6007490-837f-4bd9-a78d-c7d4e19f4e5b", "name": "Digitec", "type": "light"}]}]}, {"id": "0828da95-c0e5-4cbd-bb98-d4af8e471e44", "name": "LocalBitcoins", "tags": [], "issuers": [], "match_rules": [{"text": "LocalBitcoins", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LocalBitcoins", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "40df2129-55b8-459c-9658-7b45b4c6eea7", "name": "LocalBitcoins", "icons": [{"id": "e0ba8ea7-402a-4ac5-b1d2-88acf984aaa0", "name": "LocalBitcoins", "type": "light"}]}]}, {"id": "0847b922-d5ee-478d-8705-fc661dc2e83a", "name": "Upwork", "tags": [], "issuers": ["Upwork"], "match_rules": [], "icons_collections": [{"id": "890ad18d-ff18-4aac-beb4-9311d9941019", "name": "Upwork", "icons": [{"id": "f2180df0-6e24-4659-98ff-0d2c106ae8c6", "name": "Upwork", "type": "light"}]}]}, {"id": "086a9365-1929-4938-b3ff-5641b81def32", "name": "Nutstore", "tags": [], "issuers": [], "match_rules": [{"text": "Nutstore", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nutstore", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d1dbbc95-4fc5-4b12-8462-7d3c99ba6ec1", "name": "Nutstore", "icons": [{"id": "29e3a8fb-3e72-4c57-9b3b-2f93e98ce0e8", "name": "Nutstore", "type": "light"}]}]}, {"id": "089bde79-35b1-45dd-826d-660db6afdb24", "name": "Whois", "tags": [], "issuers": [], "match_rules": [{"text": "Whois", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Whois", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f235e969-15e7-47aa-bb7f-8a60fdd5da7d", "name": "Whois", "icons": [{"id": "67aa2bef-c623-4551-a121-abb6de9ba8c4", "name": "Whois", "type": "light"}]}]}, {"id": "0913d3cb-d3b3-4657-b948-3407855da776", "name": "DataRobot", "tags": [], "issuers": [], "match_rules": [{"text": "DataRobot", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DataRobot", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b3ff4913-a424-4f3b-9b19-8753d2dcf8c8", "name": "DataRobot", "icons": [{"id": "6a602866-1452-4bf4-9dcd-df5e59d8b7ff", "name": "DataRobot", "type": "dark"}, {"id": "9e77709f-d520-4918-afbd-3e281fbfbbea", "name": "DataRobot", "type": "light"}]}]}, {"id": "092783fe-18e3-4cfa-900d-de5c135cafb1", "name": "Dmarket", "tags": [], "issuers": ["Dmarket"], "match_rules": null, "icons_collections": [{"id": "5247c96d-2383-4016-aa5d-119b251f94c3", "name": "Dmarket", "icons": [{"id": "1ae43cd5-1d50-4c13-8752-598ebec77b5c", "name": "Dmarket", "type": "light"}]}]}, {"id": "096b26f8-e5c9-467b-aca7-e2fdb63c7e36", "name": "Jamf", "tags": [], "issuers": ["Jamf+Now", "Jamf Now"], "match_rules": [], "icons_collections": [{"id": "ae357171-6e23-456c-950a-e792b0ea53b3", "name": "Jamf", "icons": [{"id": "ee6d37b9-9a50-491f-bdb6-cae99f76ec1d", "name": "Jamf", "type": "light"}]}]}, {"id": "09b903b7-e980-4099-955e-dcd421232870", "name": "SatoshiTango", "tags": [], "issuers": [], "match_rules": [{"text": "SatoshiTango", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SatoshiTango", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fefa43e1-ce67-49d3-9a20-8c88d5ac5fa5", "name": "SatoshiTango", "icons": [{"id": "984822cb-4c7f-4a39-be4e-79360723e9aa", "name": "SatoshiTango", "type": "light"}]}]}, {"id": "09edfec0-c3cc-4c8b-8135-ac5779708019", "name": "GreenGeeks", "tags": [], "issuers": [], "match_rules": [{"text": "GreenGeeks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GreenGeeks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b5b9eddc-6c44-44db-901e-f2fd5483b7a2", "name": "GreenGeeks", "icons": [{"id": "be4d4ae6-1d51-403b-845b-6ac616262e4e", "name": "GreenGeeks", "type": "light"}]}]}, {"id": "0a48f587-2d81-494a-bcdb-a01569f81453", "name": "SimpleLogin", "tags": [], "issuers": ["SimpleLogin"], "match_rules": null, "icons_collections": [{"id": "2ed9942b-daec-491a-871e-0c01e77e0722", "name": "SimpleLogin", "icons": [{"id": "5db23412-5920-4690-827c-ec97808a7f68", "name": "SimpleLogin", "type": "light"}, {"id": "f942499b-5e7b-46a8-aa94-aa8c500d1bcc", "name": "SimpleLogin", "type": "dark"}]}]}, {"id": "0a534123-ccf1-4948-b85e-414fc8883643", "name": "Mailfence", "tags": [], "issuers": [], "match_rules": [{"text": "Mailfence", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mailfence", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d0dbebe6-c08a-4f80-a83c-4956883d204c", "name": "Mailfence", "icons": [{"id": "e1f37b98-857d-43c2-9739-c12d877cdb25", "name": "Mailfence", "type": "light"}]}]}, {"id": "0a908e25-0591-4ab5-9999-fd4d2ff9dc89", "name": "DMM", "tags": [], "issuers": [], "match_rules": [{"text": "DMM", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DMM", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7256c39b-2d44-46e2-8fe0-3de4edc17dcd", "name": "DMM", "icons": [{"id": "004533a9-e17c-4226-a436-4270ac770d44", "name": "DMM", "type": "dark"}, {"id": "fc8f2ea2-a1a7-40f1-990b-ecab825e4fbc", "name": "DMM", "type": "light"}]}]}, {"id": "0abba2a9-b06f-4bea-8767-74aa8f719147", "name": "CoD Mobile", "tags": ["call of duty", "call", "duty", "activision", "mobile"], "issuers": [], "match_rules": [], "icons_collections": [{"id": "7fda4f3a-b307-47a7-bebe-373eb738785e", "name": "CoD Mobile", "icons": [{"id": "11082d0d-b0d6-49d6-bf6f-e871f8359e5e", "name": "CoD Mobile", "type": "light"}, {"id": "adf4b16b-b64d-489f-a0a4-0d3188dcd768", "name": "CoD Mobile", "type": "dark"}]}]}, {"id": "0afc71a2-f1e0-4ea1-9e1c-05d5fff2a66a", "name": "Masaryk University", "tags": [], "issuers": [], "match_rules": [{"text": "Masaryk University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Masaryk University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "39eebd39-2a8c-46fe-9e5a-1e2217888b0b", "name": "Masaryk University", "icons": [{"id": "ec6eb84d-6649-4445-bb6a-6af58f6e59ea", "name": "Masaryk University", "type": "light"}]}]}, {"id": "0b235bab-68e0-44e8-925f-92ecc3f9af59", "name": "Modrinth", "tags": [], "issuers": ["Modrinth"], "match_rules": null, "icons_collections": [{"id": "c27fa5bf-b460-42f7-af14-914136200c09", "name": "Modrinth", "icons": [{"id": "7293c1bb-b4ac-464d-9ffc-aed8807960cc", "name": "Modrinth", "type": "light"}, {"id": "b7f3992d-960a-4e3c-9b94-ab86b20a5c39", "name": "Modrinth", "type": "dark"}]}]}, {"id": "0c4e2e05-a8dd-405f-9fff-ffbc2b052444", "name": "Onehub", "tags": [], "issuers": [], "match_rules": [{"text": "Onehub", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Onehub", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "68d9c9c8-487e-4496-a40a-46412e6c4187", "name": "Onehub", "icons": [{"id": "f2a7bea4-c073-4ba4-bbb0-fe5c48954d83", "name": "Onehub", "type": "light"}]}]}, {"id": "0c7ffaf6-fa79-47b5-9fb1-1fc4d97541e4", "name": "Cfx.re Community", "tags": [], "issuers": ["Cfx.re Community"], "match_rules": null, "icons_collections": [{"id": "685d98ed-ca33-470c-82b8-6ae671c2ec15", "name": "Cfx.re Community", "icons": [{"id": "2fce5530-de19-4f98-97dd-275e2b6538b2", "name": "Cfx.re Community", "type": "dark"}, {"id": "40b43ca5-da36-41a3-b907-d9125be40c48", "name": "Cfx.re Community", "type": "light"}]}]}, {"id": "0c954246-0285-4e39-aca4-e37bc4df083a", "name": "BookStack", "tags": [], "issuers": ["BookStack"], "match_rules": null, "icons_collections": [{"id": "e65eee11-1129-447d-bfe5-c91512540eaf", "name": "BookStack", "icons": [{"id": "7cbaecfd-e640-437a-8937-d9df89a2cbd0", "name": "BookStack", "type": "light"}]}]}, {"id": "0c9bc1b5-147a-41af-a9ac-68687275a9d7", "name": "Hypixel", "tags": [], "issuers": ["Hypixel - Minecraft Server and Maps"], "match_rules": null, "icons_collections": [{"id": "942fde6e-e260-4c0a-8c60-3ebae7251352", "name": "Hypixel", "icons": [{"id": "b5f63308-ab6b-4287-a881-0cc821a607c2", "name": "Hypixel", "type": "light"}]}]}, {"id": "0d0049fb-3f6b-4f18-8d74-63dcaa928eb8", "name": "McGill University", "tags": [], "issuers": [], "match_rules": [{"text": "McGill University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "McGill University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "04db2fc7-09c8-4b81-a4b5-703a3e0e348c", "name": "McGill University", "icons": [{"id": "bddfc9bf-e8c7-44cd-af53-b7251fcd2e2d", "name": "McGill University", "type": "light"}]}]}, {"id": "0d096e23-0594-47af-abac-51aaae14f19c", "name": "QNAP", "tags": [], "issuers": [], "match_rules": [{"text": "QNAP", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": []}, {"id": "0e0aca8b-0901-4a9f-87ae-655407c6b719", "name": "Scalefusion", "tags": [], "issuers": [], "match_rules": [{"text": "Scalefusion", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Scalefusion", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f627bd28-2647-449e-8c42-2ec569f4f3aa", "name": "Scalefusion", "icons": [{"id": "d43bd133-b639-412c-9b58-13bf0614f931", "name": "Scalefusion", "type": "light"}]}]}, {"id": "0e479fcd-6a38-4431-9605-8a3d8b260e29", "name": "HMRC", "tags": [], "issuers": ["Government Gateway", "HMRC", "GovernmentGateway"], "match_rules": [], "icons_collections": [{"id": "e176c886-93fe-44f9-b6d8-a22bd522a396", "name": "HMRC", "icons": [{"id": "88f3d199-7562-4109-b1b1-381adfc6f08e", "name": "HMRC", "type": "light"}, {"id": "893113d0-e694-4694-b84a-1788aedce842", "name": "HMRC", "type": "dark"}]}]}, {"id": "0e6522dd-eb84-4b58-96d9-de67618f8dd0", "name": "Brigham Young University", "tags": ["byu"], "issuers": [], "match_rules": [{"text": "Brigham Young University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Brigham Young University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f4d27ee1-957f-4820-a58e-3b89db515f01", "name": "Brigham Young University", "icons": [{"id": "9b862654-e6aa-4a8b-8e73-04b921849a85", "name": "Brigham Young University", "type": "dark"}, {"id": "a9fc4d55-e833-4d67-855c-c50c8162d7e7", "name": "Brigham Young University", "type": "light"}]}]}, {"id": "0e79ba5e-36a3-4847-96d5-e1dcfe879874", "name": "FogBugz", "tags": [], "issuers": [], "match_rules": [{"text": "FogBugz", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FogBugz", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f57361ff-f86d-4314-90dd-73a77e975562", "name": "FogBugz", "icons": [{"id": "ca0621d0-fe97-4f2a-94f9-ba000d61305e", "name": "FogBugz", "type": "light"}]}]}, {"id": "0eac11f5-2407-4642-89a0-6c734c164c83", "name": "Teleport", "tags": [], "issuers": [], "match_rules": [{"text": "Teleport", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Teleport", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77b0824c-e6a3-4edc-96dd-80f4bea412b4", "name": "Teleport", "icons": [{"id": "a9bba303-9f7b-455a-ab9d-5767f4dbcca5", "name": "Teleport", "type": "light"}]}]}, {"id": "0eac9826-637b-4e1c-b73e-33b08cb4d8ee", "name": "Nulab", "tags": [], "issuers": [], "match_rules": [{"text": "Nulab", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nulab", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e16d1e0f-e22c-4896-98dc-82c0923a165b", "name": "Nulab", "icons": [{"id": "c70ccd75-d327-4d78-be57-86629ee11765", "name": "Nulab", "type": "light"}]}]}, {"id": "0ed32918-d9c2-43a5-af82-4cbafe16886c", "name": "BayPort Credit Union", "tags": [], "issuers": [], "match_rules": [{"text": "BayPort", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "BayPort", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "403040ec-544e-40b3-a4fd-82c8947b19ec", "name": "BayPort Credit Union", "icons": [{"id": "1426b62d-2632-4073-8a26-097c7dc87950", "name": "BayPort Credit Union", "type": "light"}, {"id": "dd911268-dc1a-4f27-9f09-ae322460bbfd", "name": " BayPort Credit Union", "type": "dark"}]}]}, {"id": "0f41d2cd-c5ad-4503-b0ab-5644e5d570a4", "name": "Paddle", "tags": [], "issuers": [], "match_rules": [{"text": "Paddle", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Paddle", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "492cfdb1-b046-49c4-b8c8-0232fd3f4675", "name": "Paddle", "icons": [{"id": "31945895-f396-4a34-b280-38a3bae31041", "name": "Paddle", "type": "light"}]}]}, {"id": "0f5d448c-117f-4d9c-988b-6a5913a6bf89", "name": "ISL Online", "tags": [], "issuers": [], "match_rules": [{"text": "ISL Online", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ISL Online", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "36ca071a-0422-4157-9c08-78c4c0d86028", "name": "ISL Online", "icons": [{"id": "05f03df2-ad08-4870-8499-9cbe259e5d8f", "name": "ISL Online", "type": "light"}]}]}, {"id": "0f79f016-6bea-42a7-88d3-b7f44b14f02f", "name": "Buddy", "tags": [], "issuers": [], "match_rules": [{"text": "Buddy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Buddy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e0224a23-cdd2-44be-b691-290806b67926", "name": "Buddy", "icons": [{"id": "a8bfd469-72f1-48be-a82b-a8908970d378", "name": "Buddy", "type": "light"}]}]}, {"id": "0f80c3fb-86d2-42cd-8c59-059a35b5083d", "name": "SoFi", "tags": [], "issuers": ["SoFi"], "match_rules": [], "icons_collections": [{"id": "da353611-99cc-41a0-b01c-280843d9c9b8", "name": "SoFi", "icons": [{"id": "59dc5efe-44f9-4726-8ce1-867daac597df", "name": "SoFi", "type": "light"}]}]}, {"id": "0f92d0c5-2b96-4f8e-91ef-9a026e048b80", "name": "TikTok", "tags": [], "issuers": ["TikTok"], "match_rules": [{"text": "TikTok", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "c1478a28-c2a3-4993-be6e-1f826be2d5c9", "name": "TikTok", "icons": [{"id": "870087a4-8947-4dbc-b367-d87d88e1fc4e", "name": "TikTok", "type": "light"}, {"id": "dec15ca7-b8cb-4d14-8404-578047f7f066", "name": "TikTok", "type": "dark"}]}]}, {"id": "0fbf7a9f-f82a-447e-84e1-3d000164798d", "name": "Postmarkapp", "tags": [], "issuers": [], "match_rules": [{"text": "Postmarkapp", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Postmarkapp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "82c1b55f-28e0-4bc8-b225-4029c1a8ef1d", "name": "Postmarkapp", "icons": [{"id": "84ff468a-d423-47bf-ba64-e07d1eac9a6a", "name": "Postmarkapp", "type": "light"}]}]}, {"id": "0fe827e9-5e2f-4aec-8b26-3d7c0cfd80d2", "name": "Solarus", "tags": [], "issuers": [], "match_rules": [{"text": "Solarus", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Solarus", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cf5b2375-7284-43d4-9333-3008b891b9cf", "name": "Solarus", "icons": [{"id": "ebdc9249-a893-469f-89b5-0ca140566c2a", "name": "Solarus", "type": "light"}]}]}, {"id": "103e3001-aece-493d-9f90-9a5ab4520ada", "name": "Masterworks", "tags": [], "issuers": ["Masterworks"], "match_rules": null, "icons_collections": [{"id": "687cb980-6c6f-4e16-94df-6ca45cd71e33", "name": "Masterworks", "icons": [{"id": "87e48ce0-5fb3-4421-8d2e-d68d50c912ef", "name": "Masterworks", "type": "light"}, {"id": "c17f13fc-b10b-4270-94fa-547dc2d0080f", "name": "Masterworks", "type": "dark"}]}]}, {"id": "104c80c0-5ff6-41d9-8c05-76c1860bd36b", "name": "Bethesda", "tags": [], "issuers": ["Bethesda.net"], "match_rules": null, "icons_collections": [{"id": "7e238b3c-9833-4d0b-acc2-36396eccb0fe", "name": "Bethesda.net", "icons": [{"id": "14a364c1-6a5f-4a92-8aa8-b8511443e37d", "name": "Bethesda.net", "type": "dark"}, {"id": "2315091d-354e-4994-97b8-5bfe064722ac", "name": "Bethesda.net", "type": "light"}]}]}, {"id": "10cf2464-641c-4310-8d7e-4ab77e7d0228", "name": "Haru", "tags": ["invest"], "issuers": ["Haruinvest.com"], "match_rules": null, "icons_collections": [{"id": "3440cd67-8d23-4d35-bd85-6ab1e8a6f409", "name": "Haru", "icons": [{"id": "6fd99f85-edb4-4b41-84a8-cb59f10235e2", "name": "Haru", "type": "light"}, {"id": "f77694ff-fdfb-403e-b490-b53884a85ad6", "name": "Haru", "type": "dark"}]}]}, {"id": "111b5db0-2844-40a2-9a76-d65250af89f4", "name": "Practice Better", "tags": [], "issuers": [], "match_rules": [{"text": "Practice Better", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Practice Better", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b0dc695-b65d-4bf0-8b59-a18fe69f5ebd", "name": "Practice Better", "icons": [{"id": "f9e722da-f1f1-4cf6-99c2-45d410325339", "name": "Practice Better", "type": "light"}]}]}, {"id": "112f7052-cdf0-4851-a562-c0754d001e80", "name": "Dwolla", "tags": [], "issuers": [], "match_rules": [{"text": "Dwolla", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Dwolla", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "183c86e4-d062-4afc-89e2-05acaef54ca6", "name": "Dwolla", "icons": [{"id": "c2abfbf6-07ac-4f95-aeb5-e1fb4f58bd0f", "name": "Dwolla", "type": "light"}]}]}, {"id": "1141a948-d87c-43e3-8b21-cc95ca9703e5", "name": "SmartSurvey", "tags": [], "issuers": [], "match_rules": [{"text": "SmartSurvey", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SmartSurvey", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "089d988f-65b4-4acf-a3f7-fc044b7a4181", "name": "SmartSurvey", "icons": [{"id": "51c518a1-04a7-43ab-b986-8abb0d7b0cc9", "name": "SmartSurvey", "type": "light"}]}]}, {"id": "115aaa5c-3867-41b8-b668-b193f795d232", "name": "Hiveon", "tags": [], "issuers": ["HiveOS"], "match_rules": null, "icons_collections": [{"id": "1e5c1655-57e3-44f3-bcf6-ef46b3c699c7", "name": "Hiveon", "icons": [{"id": "a73cf5a1-e3d0-4fc5-a7f2-b231814fa663", "name": "Hiveon", "type": "light"}]}]}, {"id": "1174fb7d-cb22-4855-b454-d1d25acb3753", "name": "Proton", "tags": [], "issuers": ["ProtonMail", "Proton"], "match_rules": [], "icons_collections": [{"id": "114d2106-4e3d-4ae4-b559-dc598f2fda3c", "name": "Proton", "icons": [{"id": "7ce2cda7-24cc-4bd1-b210-0b372b90f3e7", "name": "Proton", "type": "light"}]}]}, {"id": "1186b6ab-e0c5-4a17-a27e-d9727b7688b0", "name": "Bitsgap", "tags": [], "issuers": [], "match_rules": [{"text": "Bitsgap", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitsgap", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2a7a6e8f-6014-40d8-97d9-673e2ffa7328", "name": "Bitsgap", "icons": [{"id": "ab0af82b-0040-4216-9340-2d92fbb771bd", "name": "Bitsgap", "type": "light"}]}]}, {"id": "11cdf742-25e2-4915-bd71-4f7c11272b27", "name": "Short.io", "tags": [], "issuers": ["Short.io"], "match_rules": null, "icons_collections": [{"id": "fc4833dd-7151-4ab4-a9ce-aa45de5b710a", "name": "Short.io", "icons": [{"id": "126d05d4-6ba8-40ed-be8e-8478a370656b", "name": "Short.io", "type": "light"}]}]}, {"id": "121acf58-0e10-4e0d-a967-2dad5f8e5929", "name": "UptimeRobot", "tags": [], "issuers": ["UptimeRobot"], "match_rules": [], "icons_collections": [{"id": "cb646018-2b9c-471c-b033-cc932a767520", "name": "UptimeRobot", "icons": [{"id": "45f36783-5584-4950-af0d-7b321a2171c7", "name": "UptimeRobot", "type": "light"}]}]}, {"id": "12af652e-0c2f-48c8-8ebd-dd8b0fe60f83", "name": "Phrase", "tags": [], "issuers": [], "match_rules": [{"text": "Phrase", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Phrase", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9ef0672-faea-4223-a8cb-69b4718330d7", "name": "Phrase", "icons": [{"id": "32f4ae9e-de65-4085-beba-3a91609c1800", "name": "phrase", "type": "dark"}, {"id": "c99fb8a9-9704-4c31-908d-3e354aad5f6d", "name": "Phrase", "type": "light"}]}]}, {"id": "12bcda3c-a8d1-493f-a529-0c3708fbafdd", "name": "GradeSteps", "tags": [], "issuers": [], "match_rules": [{"text": "GradeSteps", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GradeSteps", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c1ff2651-dffc-42aa-8342-a78809e6020c", "name": "GradeSteps", "icons": [{"id": "491ab257-375a-45d8-a775-43577e6cd546", "name": "GradeSteps", "type": "light"}]}]}, {"id": "131392a5-c598-4a0e-bb80-4a0b2a724ae7", "name": "Rebrandly", "tags": [], "issuers": [], "match_rules": [{"text": "Rebrandly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rebrandly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "26f2c4c6-39d2-4f8a-8d61-7f2e39424f4e", "name": "Rebrandly", "icons": [{"id": "3172d1e9-f731-4513-be60-5d1f816b37f1", "name": "Rebrandly", "type": "light"}]}]}, {"id": "1338c029-1aa4-4a61-a1be-57c1c393f898", "name": "Contentful", "tags": [], "issuers": [], "match_rules": [{"text": "Contentful", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Contentful", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1eaad0b3-4079-4157-b3be-90124cc6feaf", "name": "Contentful", "icons": [{"id": "7cc870f6-9975-48d6-b261-8c667f309cb1", "name": "Contentful", "type": "light"}]}]}, {"id": "1356db6e-a3f7-436a-8584-be00a7d6ff43", "name": "Brex", "tags": [], "issuers": [], "match_rules": [{"text": "Brex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Brex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "25855b19-bda8-4875-b182-3960456f16a7", "name": "Brex", "icons": [{"id": "9c32899b-7844-425b-afd2-d4d81a9d83e7", "name": "Brex", "type": "dark"}, {"id": "ca8c4744-6fab-4fc3-9e53-ae492e8aeb09", "name": "Brex", "type": "light"}]}]}, {"id": "1366f931-a503-46cc-9e86-3c1b2528b548", "name": "Firmex VDR", "tags": [], "issuers": [], "match_rules": [{"text": "Firmex VDR", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Firmex VDR", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "391201f1-7d01-4c5c-9523-2c8e54e4cea2", "name": "Firmex VDR", "icons": [{"id": "9c31033b-6317-4759-9e4f-400076fe6e1f", "name": "Firmex VDR", "type": "light"}]}]}, {"id": "137459fd-0f05-489a-95af-fd0245c3fa0e", "name": "Bitpay", "tags": [], "issuers": [], "match_rules": [{"text": "[bitpay]", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d85626dd-c037-44cf-b841-425af012457c", "name": "Bitpay", "icons": [{"id": "d9b48a25-0686-4b04-945e-8348be16706e", "name": "Bitpay", "type": "light"}]}]}, {"id": "13cd6950-fea9-478d-9204-6ce9883bbdd1", "name": "NairaEx", "tags": [], "issuers": [], "match_rules": [{"text": "NairaEx", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NairaEx", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a575f293-030a-47e9-a813-ee011f85689e", "name": "NairaEx", "icons": [{"id": "279b62a2-792c-400d-8501-be206d21912b", "name": "NairaEx", "type": "light"}]}]}, {"id": "142f6389-d0de-4bf6-bd90-b9171e66561d", "name": "Verpex", "tags": [], "issuers": [], "match_rules": [{"text": "Verpex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Verpex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "185f645a-1743-4dc5-b2e5-bf5f5d114186", "name": "Verpex", "icons": [{"id": "1f7ece1c-aeec-4151-a41d-096d7e80e83b", "name": "Verpex", "type": "light"}, {"id": "e0ca9fee-0a71-49ac-9347-a0e40fc3d388", "name": "Verpex", "type": "dark"}]}]}, {"id": "14426ff2-a34b-45c7-b849-4e89ef1ea285", "name": "No Starch Press", "tags": [], "issuers": [], "match_rules": [{"text": "No Starch Press", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "No Starch Press", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "131acd15-d175-4c4f-a3cf-cecc9a3a7cf2", "name": "No Starch Press", "icons": [{"id": "60388bbb-5823-4fda-a194-3841f9108a61", "name": "No Starch Press", "type": "light"}, {"id": "aaabfe8d-9a7d-4729-995f-6fe7aa7421fe", "name": "No Starch Press", "type": "dark"}]}]}, {"id": "145fcf19-0226-4ca1-8457-69d778a3808f", "name": "Coinigy", "tags": [], "issuers": [], "match_rules": [{"text": "Coinigy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinigy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0059e395-f954-47a0-a8e4-4bc800a4a0f8", "name": "Coinigy", "icons": [{"id": "40cf688b-4a7a-4fd3-ab79-6df4cf028866", "name": "Coinigy", "type": "light"}]}]}, {"id": "148aee0b-5b58-4a72-a9d2-e93184b6e398", "name": "Karlsruher Institut f\u00fcr Technologie", "tags": [], "issuers": [], "match_rules": [{"text": "Karlsruher Institut f\u00fcr Technologie", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Karlsruher Institut f\u00fcr Technologie", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a038b1b2-ff3b-4dfa-9ca2-11fb7952a39d", "name": "Karlsruher Institut f\u00fcr Technologie", "icons": [{"id": "42225520-b48a-429a-954c-fcf55fcd044e", "name": "Karlsruher Institut f\u00fcr Technologie", "type": "dark"}, {"id": "fae8977f-4127-4df7-9608-e6a8a0a82afa", "name": "Karlsruher Institut f\u00fcr Technologie", "type": "light"}]}]}, {"id": "14b0712a-b660-4550-ac94-bc0ea75e3228", "name": "Slack", "tags": [], "issuers": ["Slack"], "match_rules": [], "icons_collections": [{"id": "dc0d1bf9-dc12-4936-8441-cd54f433be09", "name": "Slack", "icons": [{"id": "6205c83b-4c99-419c-a3db-8a19aec7798c", "name": "Slack", "type": "light"}]}]}, {"id": "14bf925d-a0e8-45d0-9ee2-bff317c244e4", "name": "Coinjar", "tags": [], "issuers": [], "match_rules": [{"text": "Coinjar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinjar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2752300d-8fda-423a-a5a9-cda0690ddfa1", "name": "Coinjar", "icons": [{"id": "2992dfd0-3daa-43d8-97a6-d3ed2d58b3c8", "name": "Coinjar", "type": "dark"}, {"id": "2cc5414f-e85a-4d2f-a8bb-1bfcc1aa134b", "name": "Coinjar", "type": "light"}]}]}, {"id": "14c8dd5d-8982-409d-a2e2-dab2983eb020", "name": "Fauna", "tags": [], "issuers": [], "match_rules": [{"text": "Fauna", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fauna", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "57883bd7-ec1c-458f-aeb8-5a8d52595b75", "name": "Fauna", "icons": [{"id": "5300378e-b9be-446c-a7d9-995fe12e39d0", "name": "Fauna", "type": "light"}, {"id": "855cb28d-dc90-4a53-ac76-26eb7ec2aa6d", "name": "Fauna", "type": "dark"}]}]}, {"id": "14ddda49-0a2d-46cf-b46e-bf236a355ee1", "name": "Favro", "tags": [], "issuers": [], "match_rules": [{"text": "Favro", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Favro", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a8d8d8b5-ab15-4531-bb19-9d5ea7100cb9", "name": "Favro", "icons": [{"id": "3240fb2d-1dbd-4906-9e57-e10490cf23fa", "name": "Favro", "type": "light"}]}]}, {"id": "14e45151-0724-48c1-8d71-f262202307c7", "name": "ISC2", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "e80af02c-1616-42f1-ac93-89d8aaec29c8", "name": "ISC2", "icons": [{"id": "461ca448-65f2-4021-95ee-a84a71e353ca", "name": "isc2", "type": "dark"}, {"id": "e6c5c5e4-29d4-4af3-9d9c-4f29762e68e5", "name": "(ISC)2", "type": "light"}]}]}, {"id": "15252c33-7103-4761-8e35-ed1ecd201a43", "name": "Notesnook", "tags": [], "issuers": ["Notesnook"], "match_rules": null, "icons_collections": [{"id": "a6be73b0-61b7-4484-bb66-ef5cdff5e99d", "name": "Notesnook", "icons": [{"id": "3133bbe2-1604-4f4f-998b-0bbe5cdc01a9", "name": "Notesnook", "type": "light"}]}]}, {"id": "15733414-0160-4dd9-9fc1-187369cbb288", "name": "Above.com", "tags": [], "issuers": [], "match_rules": [{"text": "Above", "field": "issuer", "matcher": "starts_with", "ignore_case": true}, {"text": "Above", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "6d0c4064-6096-46bb-92fd-584ecb64733c", "name": "Above.com", "icons": [{"id": "e2d986d3-deb5-40dc-b089-e025f2dadd07", "name": "Above", "type": "light"}]}]}, {"id": "15abc44c-e519-488b-98f2-3a75aaf270af", "name": "Reddit", "tags": [], "issuers": ["Reddit"], "match_rules": [], "icons_collections": [{"id": "f0fbc3b5-3725-494f-8ebc-4f3d80b2fcfe", "name": "Reddit", "icons": [{"id": "524daa7f-d8cc-476a-bcdc-2da5955348ad", "name": "Reddit", "type": "light"}]}]}, {"id": "15aecbe2-7315-4fc1-ab7c-14c49b45dac0", "name": "Tori", "tags": [], "issuers": [], "match_rules": [{"text": "Tori", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tori", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "70c730a8-79c7-41a3-8444-ad2eb1b9192c", "name": "Tori", "icons": [{"id": "af196ff1-0940-49dd-b037-6c30cc626f7f", "name": "Tori", "type": "light"}]}]}, {"id": "15b2d968-b472-483d-93e4-35891557e215", "name": "Scryfall", "tags": [], "issuers": [], "match_rules": [{"text": "Scryfall", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Scryfall", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4d101f07-8841-4db1-9ef3-43b705b2eab0", "name": "Scryfall", "icons": [{"id": "feb2e13f-9cde-4dd0-b7f9-bd368c1f5631", "name": "Scryfall", "type": "light"}]}]}, {"id": "15e30efe-aeb1-441a-916c-ae4eb1787f27", "name": "Cryptology", "tags": [], "issuers": [], "match_rules": [{"text": "cryptology.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "1ff6314f-90cb-40d6-ba16-b0ab8746bf5a", "name": "Cryptology", "icons": [{"id": "020bdb1a-b205-491b-b74b-42ea0c6620b9", "name": "Cryptology", "type": "dark"}, {"id": "c9499b98-a821-4557-ba7e-ea34ecf9b24e", "name": "Cryptology", "type": "light"}]}]}, {"id": "15fc4637-25c0-416e-9fcc-afe99dab8abe", "name": "Drupal", "tags": [], "issuers": ["drupal"], "match_rules": [], "icons_collections": [{"id": "07f84ab8-8a93-4f0b-bc3b-00c20a3dfec9", "name": "Drupal", "icons": [{"id": "ca2d5840-490c-4338-b547-9cecaa45aea9", "name": "Drupal", "type": "light"}]}]}, {"id": "16006518-3005-4f92-8232-d5b69a777a8f", "name": "Web Hosting Canada", "tags": [], "issuers": [], "match_rules": [{"text": "Web Hosting Canada", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Web Hosting Canada", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "30df36aa-2de4-45f8-9b6a-a83efa91838c", "name": "Web Hosting Canada", "icons": [{"id": "856d5ac7-c2e7-42b4-9d14-3b1d6cf7159f", "name": "Web Hosting Canada", "type": "light"}]}]}, {"id": "162b6a67-dc0a-4662-8fed-dca5c5de8411", "name": "solo.to", "tags": [], "issuers": ["solo.to"], "match_rules": null, "icons_collections": [{"id": "c4e8280e-75c9-4742-8fbe-59406ed093ea", "name": "solo.to", "icons": [{"id": "e35c0fd2-dd6b-4fdc-b1b5-861361fb78c9", "name": "solo.to", "type": "light"}]}]}, {"id": "165c70a7-d28c-4b7f-a92d-eab8e66dfcb5", "name": "SouthXchange", "tags": [], "issuers": [], "match_rules": [{"text": "SouthXchange", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SouthXchange", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5226962c-4f84-469d-9d64-1a0a466c3c5e", "name": "SouthXchange", "icons": [{"id": "555a55c4-a5c4-496f-91ec-738a46f70801", "name": "SouthXchange", "type": "dark"}, {"id": "f981a084-d6c0-4eb1-8acf-b47e0b13b6fe", "name": "SouthXchange", "type": "light"}]}]}, {"id": "16b5168c-d5bf-468a-b795-3a1b87570445", "name": "Monday.com", "tags": [], "issuers": [], "match_rules": [{"text": "Monday.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Monday.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b02d2f47-cfd4-40b8-af98-0b9838ff46a5", "name": "Monday.com", "icons": [{"id": "36a7a16f-04bb-4325-addc-47fd825d0043", "name": "Monday.com", "type": "light"}]}]}, {"id": "16da29bf-6b58-4260-9558-e150ed65ecc7", "name": "NCSOFT", "tags": [], "issuers": [], "match_rules": [{"text": "NCSOFT", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "NCSOFT", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bc8676fa-016b-470b-9266-50d107b4c943", "name": "NCSOFT", "icons": [{"id": "b7c57bb9-8fcf-4fe5-9128-cf74bb1f1ced", "name": "NCSOFT", "type": "dark"}, {"id": "ccf0caec-ba69-48ca-a7f0-57f670906da0", "name": "NCSOFT", "type": "light"}]}]}, {"id": "16e92d20-b1b4-4e23-ba0a-224d79b0a02a", "name": "CurseForge", "tags": [], "issuers": ["CurseForge"], "match_rules": null, "icons_collections": [{"id": "4f9313c6-fab1-48ef-a642-4fb13007c82c", "name": "CurseForge", "icons": [{"id": "da898e41-a0cf-432a-9c90-dd256d040a83", "name": "CurseForge", "type": "light"}]}]}, {"id": "170388d7-479c-40d6-b624-b72d22ecf552", "name": "Kayako", "tags": [], "issuers": [], "match_rules": [{"text": "kayako.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f0359e70-4297-4693-aa8d-ba5fca0668e8", "name": "Kayako", "icons": [{"id": "ab46e929-5aeb-4fa5-a310-110407921d0c", "name": "Kayako", "type": "light"}]}]}, {"id": "1716d6a3-743f-4e7b-a810-201b795458fd", "name": "Pingvin Share", "tags": [], "issuers": ["pingvin-share"], "match_rules": null, "icons_collections": [{"id": "780f5d04-4146-4a85-b093-74b7ca940c16", "name": "Pingvin Share", "icons": [{"id": "cf2fa706-8301-4ca5-babf-3c259a7778f8", "name": "Pingvin Share", "type": "light"}]}]}, {"id": "173fbdfc-ef75-401a-811d-068de491b2bf", "name": "Surety", "tags": [], "issuers": [], "match_rules": [{"text": "Surety", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Surety", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "19f412ec-f01a-4976-955b-7f0d5af83c07", "name": "Surety", "icons": [{"id": "e2ef1960-9a8d-468c-a2ec-867f764551b6", "name": "Surety", "type": "light"}]}]}, {"id": "17c5852f-11aa-4c0c-bb5a-441d62ef3a86", "name": "Secure Access Washington", "tags": ["saw"], "issuers": [], "match_rules": [{"text": "Secure Access Washington", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Secure Access Washington", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Secure(\\+|\\s|-|_)Access(\\+|\\s|-|_)Washington", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Secure(\\+|\\s|-|_)Access(\\+|\\s|-|_)Washington", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "5fa92902-34fd-4f0a-8361-93790daa1bed", "name": "Secure Access Washington", "icons": [{"id": "e2d55d9a-03be-4d48-84e1-9553b909bc56", "name": "Secure Access Washington", "type": "light"}]}]}, {"id": "17d05262-546d-407b-a481-c130535b3a73", "name": "myPay", "tags": [], "issuers": [], "match_rules": [{"text": "myPay", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "51cddf69-c85c-4a24-9790-209680d296e3", "name": "myPay", "icons": [{"id": "1a121cc6-c66a-4db7-9ca5-721acc57ac2b", "name": "myPay", "type": "light"}]}]}, {"id": "180c5928-9206-4984-92cc-72b136601b7d", "name": "Mercado Bitcoin", "tags": [], "issuers": [], "match_rules": [{"text": "Mercado Bitcoin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mercado Bitcoin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0b187fe8-13a2-4cec-a254-c2a807dd40b4", "name": "Mercado Bitcoin", "icons": [{"id": "b03c312b-ea89-4dd4-aba2-0138e5bec359", "name": "Mercado Bitcoin", "type": "light"}]}]}, {"id": "1818b58d-1a0e-48bc-b122-33cb8f48f248", "name": "Packagist.com", "tags": [], "issuers": ["Private Packagist"], "match_rules": [{"text": "Packagist", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Packagist", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "53cbaf51-a4b3-45f9-832e-31ec7e38ee91", "name": "Packagist.com", "icons": [{"id": "e6585499-51bb-4d02-a6aa-c16510b7388f", "name": "Packagist", "type": "light"}]}]}, {"id": "181ad340-0b3e-4f27-a472-d9ad3fe0f10f", "name": "RestoreCord", "tags": [], "issuers": [], "match_rules": [{"text": "RestoreCord", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RestoreCord", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2c349a9c-aeb3-4ad4-94e2-682c3cfbd7d8", "name": "RestoreCord", "icons": [{"id": "3a045ca2-3f9d-46c8-87e2-5e3cf35a0e61", "name": "RestoreCord", "type": "light"}]}]}, {"id": "18242dd5-ad83-4840-b7d3-2aa84b988e94", "name": "Sketch", "tags": [], "issuers": [], "match_rules": [{"text": "Sketch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sketch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ce8f1736-65a6-42e1-a4d5-48a90cbfa032", "name": "Sketch", "icons": [{"id": "32552dc4-bf8a-4455-88b3-cb43434dac38", "name": "Sketch", "type": "light"}, {"id": "b2eccb2c-c2c0-4de5-aa04-7b53874b42f7", "name": "Sketch", "type": "dark"}]}]}, {"id": "18393734-a876-41c2-8cae-d4b86b955587", "name": "Rackspace", "tags": [], "issuers": [], "match_rules": [{"text": "Rackspace", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rackspace", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cc566ef8-f92b-47d7-99a9-a280ecd3cfa0", "name": "Rackspace", "icons": [{"id": "b3137c87-cd27-47b4-a432-3fffb3245668", "name": "Rackspace", "type": "light"}]}]}, {"id": "184d3779-9204-4c22-bd8c-b1f681350d1e", "name": "Launchpad", "tags": [], "issuers": [], "match_rules": [{"text": "Launchpad", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Launchpad", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1df3a7fa-ac7d-42ba-94f7-118a01e40d26", "name": "Launchpad", "icons": [{"id": "4d79f159-5b65-431f-a134-51ba54722b68", "name": "Launchpad", "type": "light"}]}]}, {"id": "1889446c-21ae-40ea-a6c2-639368be9732", "name": "Imperva", "tags": [], "issuers": [], "match_rules": [{"text": "Imperva", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Imperva", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eeec2c17-c57d-4b6d-9d71-e8790b04bb2e", "name": "Imperva", "icons": [{"id": "4e634655-4743-4926-a156-37e89cc40428", "name": "Imperva", "type": "dark"}, {"id": "fab99bc2-f24d-4248-9395-cee4e32d1a92", "name": "Imperva", "type": "light"}]}]}, {"id": "19171565-46a3-43eb-ad50-eeb46eaa229e", "name": "Polytoria", "tags": [], "issuers": [], "match_rules": [{"text": "Polytoria", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Polytoria", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "160ddb1a-cbf2-4350-b724-4a67c72a855d", "name": "Polytoria", "icons": [{"id": "7dcf4941-c203-481f-9423-5cbed8f4aa24", "name": "Polytoria", "type": "light"}]}]}, {"id": "19a5f44c-bc4a-4f80-9903-2c61668c5a0a", "name": "ONET Konto", "tags": [], "issuers": ["OKONTO"], "match_rules": [], "icons_collections": [{"id": "2a35dfe5-89b6-4607-ac2e-2583ddcd7978", "name": "ONET Konto", "icons": [{"id": "105b53cf-ac4e-4f2a-ae8f-e9d48770fbaf", "name": "ONET Konto", "type": "light"}, {"id": "affef866-7c84-4bc1-98a4-04954d057917", "name": "ONET Konto", "type": "dark"}]}]}, {"id": "19cac7cf-5548-4869-a33f-6a13a4ae5e6f", "name": "NiceHash Login", "tags": [], "issuers": ["NiceHash - login"], "match_rules": [], "icons_collections": [{"id": "c8019718-56b2-406f-bf21-2addda6b21fd", "name": "NiceHash", "icons": [{"id": "cb0edba6-9027-49cc-b99d-1b31041e5073", "name": "NiceHash Buying", "type": "light"}]}]}, {"id": "19fa4443-f8c0-480d-a6fb-a4af7e259d5e", "name": "ETH Z\u00fcrich", "tags": [], "issuers": [], "match_rules": [{"text": "ethz", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "ethz", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3686d8ed-ce4b-464a-afc2-5451b18312c9", "name": "ETH Z\u00fcrich", "icons": [{"id": "c6ef9fd0-403d-4075-b5ac-fd63c92df4e0", "name": "ETH Z\u00fcrich", "type": "dark"}, {"id": "e075f736-81a9-4d1a-ab42-7e92e541bfe7", "name": "ETH Z\u00fcrich", "type": "light"}]}]}, {"id": "1a113323-cc17-4184-8816-b687ea65b0b7", "name": "CoinPayU", "tags": [], "issuers": [], "match_rules": [{"text": "CoinPayU", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinPayU", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db199ebc-bac9-4a00-bfad-5c4a017c853b", "name": "CoinPayU", "icons": [{"id": "b63cde23-cb2c-43ae-b4b3-309c40a517a0", "name": "CoinPayU", "type": "light"}]}]}, {"id": "1a2bd621-38fe-4143-94b7-516a4bceca9c", "name": "FAX.PLUS", "tags": [], "issuers": [], "match_rules": [{"text": "FAX.PLUS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FAX.PLUS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6da226a8-f1a7-47f3-93a9-89f1689c2533", "name": "FAX.PLUS", "icons": [{"id": "7a3c500a-fe19-4053-bbfd-d68353a9661c", "name": "FAX.PLUS", "type": "light"}]}]}, {"id": "1a433d91-f6cc-4347-b4eb-29e98bd193ba", "name": "Campaign Monitor", "tags": [], "issuers": [], "match_rules": [{"text": "Campaign Monitor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Campaign Monitor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "682aea05-0544-473d-a5c2-9b4764348c2d", "name": "Campaign Monitor", "icons": [{"id": "99c1b634-614c-4504-b20f-9c8ef8ee2a92", "name": "Campaign Monitor", "type": "light"}]}]}, {"id": "1a8546ad-903d-4f3d-9589-f7282d426007", "name": "ID.me", "tags": [], "issuers": ["ID.me"], "match_rules": [], "icons_collections": [{"id": "edb6040c-ffbe-441f-80c1-95fc09601b4a", "name": "ID.me", "icons": [{"id": "54c8df44-7f26-4d25-bbed-183b29798c9e", "name": "ID.me", "type": "light"}, {"id": "f72024c7-3184-4057-8a1d-b6ebc68368e5", "name": "ID.me", "type": "dark"}]}]}, {"id": "1aedafd0-b21e-4220-a276-d3001bfa9702", "name": "Humble Bundle", "tags": [], "issuers": ["HumbleBundle"], "match_rules": [], "icons_collections": [{"id": "4112e85e-09cb-4e9f-960b-2e2c00b8929e", "name": "Humble Bundle", "icons": [{"id": "613d502e-0714-4c9a-9996-25f834b93363", "name": "Humble Bundle", "type": "light"}]}]}, {"id": "1b19be9e-fec0-4c64-929b-01fcc0172b74", "name": "MxToolbox", "tags": [], "issuers": [], "match_rules": [{"text": "MxToolbox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "MxToolbox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4bebe475-8430-476b-920f-3fd94f859382", "name": "MxToolbox", "icons": [{"id": "524918fc-d1a4-4028-bbd2-7ccf18a1e1f6", "name": "MxToolbox", "type": "light"}]}]}, {"id": "1b35b8ee-de08-4623-8be9-9a52d3606a08", "name": "Activision", "tags": [], "issuers": ["Activision"], "match_rules": [], "icons_collections": [{"id": "d4fef7d5-65cf-4156-bc04-98f9767b78bf", "name": "Activision", "icons": [{"id": "41580a4f-51e5-48b6-8dc2-eff7234347e2", "name": "Activision", "type": "dark"}, {"id": "fd71947e-145f-4a7b-98eb-f6a7b04ca516", "name": "Activision", "type": "light"}]}]}, {"id": "1b404cba-9661-42e6-bae4-1420c4ffe855", "name": "Domeneshop", "tags": [], "issuers": [], "match_rules": [{"text": "Domeneshop", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Domeneshop", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "46a1d96b-ac97-4fa8-926c-5b2641e06b5e", "name": "Domeneshop", "icons": [{"id": "4c2a16b4-6964-4dc4-9961-2ddd7405374d", "name": "Domeneshop", "type": "light"}]}]}, {"id": "1b4c2400-7366-4b33-9419-440e188a6748", "name": "Private Internet Access", "tags": [], "issuers": ["Private Internet Access"], "match_rules": null, "icons_collections": [{"id": "d3262b45-4011-46ce-9a3d-fce9fccf3d79", "name": "Private Internet Access", "icons": [{"id": "3c9d2fb2-c83a-4278-83bf-e9ca2cd216c4", "name": "Private Internet Access", "type": "light"}]}]}, {"id": "1b58f132-4f96-4e3d-80c7-b087f367cea1", "name": "Files.com", "tags": [], "issuers": [], "match_rules": [{"text": "Files.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Files.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "517d055e-d2eb-40dc-be4b-5777e0e08f55", "name": "Files.com", "icons": [{"id": "b7b49594-0c33-4793-9383-c12aed545250", "name": "Files.com", "type": "light"}]}]}, {"id": "1baa0fab-1a1a-495b-82ec-a2aae7de4c04", "name": "cyon", "tags": [], "issuers": [], "match_rules": [{"text": "cyon", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "cyon", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a54d0235-47bd-4bf5-b295-9cd86dd7fb4a", "name": "cyon", "icons": [{"id": "c2426fec-a933-4fc0-a705-82a43a48a1b7", "name": "cyon", "type": "light"}]}]}, {"id": "1bc36494-7dff-4efc-9b76-f6006dbbaffe", "name": "KnownHost", "tags": [], "issuers": [], "match_rules": [{"text": "KnownHost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "KnownHost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "150fcae8-49ef-4595-a855-bbd6b2c1db91", "name": "KnownHost", "icons": [{"id": "4b55dde4-abef-4afb-a89e-5cb1d9ffd4a4", "name": "KnownHost", "type": "light"}]}]}, {"id": "1bc47966-4272-4ef2-bfd2-4f619070343f", "name": "Northwestern Mutual", "tags": [], "issuers": [], "match_rules": [{"text": "Northwestern Mutual", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Northwestern Mutual", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d1bad917-1fc3-4c34-8cf7-8089143d8dc4", "name": "Northwestern Mutual", "icons": [{"id": "307546e0-f7c7-4b63-8f8c-e047578ca15a", "name": "NorthwesternMutual", "type": "dark"}, {"id": "a9d3d42e-2083-4146-a40c-750b5df77cfc", "name": "Northwestern Mutual", "type": "light"}]}]}, {"id": "1c4c489e-e743-4e71-a956-b353a70a8245", "name": "Prusa", "tags": [], "issuers": ["Prusa"], "match_rules": null, "icons_collections": [{"id": "c595ed6b-e331-4139-9183-49d1353635a4", "name": "Prusa", "icons": [{"id": "50e6d896-0dec-4959-b8fe-d1dd5779ee45", "name": "Prusa", "type": "dark"}, {"id": "67e77e4a-fe86-4608-a3d8-679d9bf0c720", "name": "Prusa", "type": "light"}]}]}, {"id": "1c6ef27d-7d4b-4827-9d8f-8aecce460008", "name": "Docker", "tags": [], "issuers": ["hub.docker.com"], "match_rules": [], "icons_collections": [{"id": "8d3b0a32-4a3e-445c-b1c3-0529bde24aa5", "name": "Docker", "icons": [{"id": "5e5e37d9-3b55-4eb8-9c92-f2cf71910056", "name": "Docker", "type": "light"}]}]}, {"id": "1cb281f3-095e-419d-a4c9-a48923d05e72", "name": "my529", "tags": [], "issuers": [], "match_rules": [{"text": "my529.org", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "a3db825d-b56e-42da-82b4-33d75214c472", "name": "my529", "icons": [{"id": "054e4b79-73b1-4187-9d5a-52cc2909e689", "name": "my529", "type": "dark"}, {"id": "eb623ea2-63fd-43e9-99b7-d516a1c41b03", "name": "my529", "type": "light"}]}]}, {"id": "1cb370b8-3681-4d7a-b43b-0b3a3d2cb132", "name": "Independer", "tags": [], "issuers": [], "match_rules": [{"text": "Independer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Independer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b7852ac0-b4ed-4873-b1e0-5595092a2d9c", "name": "Independer", "icons": [{"id": "5259ca63-4322-47f7-9669-9610055eedef", "name": "Independer", "type": "light"}]}]}, {"id": "1cfba37c-40bc-4adf-a38a-7eb89848a1f0", "name": "Faceit", "tags": [], "issuers": [], "match_rules": [{"text": "Faceit", "field": "label", "matcher": "equals", "ignore_case": true}], "icons_collections": [{"id": "418660a6-21da-4d5a-8d25-ac5f98938236", "name": "Faceit", "icons": [{"id": "a22ec51f-6c1f-4a29-ad1d-ad677603bb5e", "name": "Faceit", "type": "light"}]}]}, {"id": "1d1285f4-ea50-46ab-a490-33bb9380e752", "name": "SelfWealth", "tags": [], "issuers": [], "match_rules": [{"text": "SelfWealth", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SelfWealth", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "64dba057-d740-49b1-9688-5be5aac2f720", "name": "SelfWealth", "icons": [{"id": "418c0a36-70bd-4f1d-b3a4-c8ebfa178479", "name": "SelfWealth", "type": "light"}]}]}, {"id": "1d3774aa-bd1a-4d57-b453-5ef78943233b", "name": "Arbeitsagentur", "tags": [], "issuers": ["arbeitsagentur.de"], "match_rules": [], "icons_collections": [{"id": "323f26e2-52a2-438d-89c7-8318133499bb", "name": "Arbeitsagentur", "icons": [{"id": "23cd1dd0-370c-4f06-a755-d61ddfd026e3", "name": "Arbeitsagentur", "type": "light"}, {"id": "97715b99-922d-4b4d-be64-d1cf334ce9e3", "name": "Arbeitsagentur", "type": "dark"}]}]}, {"id": "1d62dda1-9ea0-4b58-b99d-e626340f02f6", "name": "Posteo", "tags": [], "issuers": [], "match_rules": [{"text": "Posteo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Posteo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2921f379-9b35-492d-8ed3-fdfeb2ca75bf", "name": "Posteo", "icons": [{"id": "95f3b403-d010-44fc-abcf-5f08d97718db", "name": "Posteo", "type": "light"}]}]}, {"id": "1d6a7518-af3a-4436-82c8-095ff9b1be13", "name": "Esri", "tags": [], "issuers": [], "match_rules": [{"text": "Esri", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Esri", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "41198b5f-6773-4a9f-88e1-98f254158792", "name": "Esri", "icons": [{"id": "194d982b-7482-4221-92aa-54f5c342388f", "name": "Esri", "type": "dark"}, {"id": "6f3331b6-36af-46d8-af49-99535736995e", "name": "Esri", "type": "light"}]}]}, {"id": "1d8ff8e6-0148-49b0-b0f7-20669b813c13", "name": "Earth Class Mail", "tags": [], "issuers": [], "match_rules": [{"text": "Earth Class Mail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Earth Class Mail", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f46f357a-272f-4467-8c2b-a49f99ce22dc", "name": "Earth Class Mail", "icons": [{"id": "211d58da-4685-4dba-bb5e-6beec0de7a59", "name": "Earth Class Mail", "type": "dark"}, {"id": "8d8646de-a30a-42ba-8958-4bc9306e4161", "name": "Earth Class Mail", "type": "light"}]}]}, {"id": "1dd3612b-ba8d-43d9-987e-461f1f3f6d51", "name": "iLovePDF", "tags": [], "issuers": ["iLovePDF"], "match_rules": null, "icons_collections": [{"id": "0e2c86e0-1815-4c89-9df6-c145364127de", "name": "iLovePDF", "icons": [{"id": "922a071b-3fb5-46c2-b98e-e2857a5cdd52", "name": "iLovePDF", "type": "light"}]}]}, {"id": "1e62a22d-11e6-4eba-be19-b5c43637ff0d", "name": "Weclapp", "tags": [], "issuers": [], "match_rules": [{"text": "Weclapp", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Weclapp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "245252f6-77b2-46f6-a4ab-74298597f300", "name": "Weclapp", "icons": [{"id": "ae485114-6084-4169-8225-c84565c98e2c", "name": "Weclapp", "type": "light"}]}]}, {"id": "1e95b431-48b1-469a-b961-0f97d22967af", "name": "Grist", "tags": [], "issuers": ["Grist"], "match_rules": null, "icons_collections": [{"id": "7a863a30-a3dc-4e46-9771-cd7ad5a4fc81", "name": "Grist", "icons": [{"id": "32c69ef7-71c3-4212-84af-e1904cfe45fd", "name": "Grist", "type": "light"}]}]}, {"id": "1ea76fe3-1bca-46da-b08e-dbbb8fc78cef", "name": "WeTransfer", "tags": [], "issuers": ["wetransfer-prod"], "match_rules": null, "icons_collections": [{"id": "87364362-31ca-4e7d-b04c-0b7eb4d8cf3b", "name": "WeTransfer", "icons": [{"id": "0f6a56fb-e0d9-4642-8990-ac6636313a22", "name": "WeTransfer", "type": "light"}, {"id": "c361ac89-81ea-45e9-b675-c72760c31c0f", "name": "WeTransfer", "type": "dark"}]}]}, {"id": "1eac7d7d-c6cd-46f4-8d47-bb6e70163bbc", "name": "Guilded", "tags": [], "issuers": [], "match_rules": [{"text": "Guilded", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Guilded", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0d3bc1cc-73c7-4a58-a0fd-3b6293e0eef6", "name": "Guilded", "icons": [{"id": "0eeb1a92-ee4e-4b68-b01d-76ae02b4ec77", "name": "Guilded", "type": "light"}]}]}, {"id": "1eafb2b3-17d9-417f-8d1d-afb6d9aca878", "name": "Pulseway", "tags": [], "issuers": ["Pulseway"], "match_rules": [], "icons_collections": [{"id": "12a96d37-ecc7-4dce-b36e-9249a89d343c", "name": "Pulseway", "icons": [{"id": "2afd96b8-fc3a-4137-9b5b-f9034955e4f4", "name": "Pulseway", "type": "dark"}, {"id": "587271c2-def8-4ab4-ada7-a663796a24a3", "name": "Pulseway", "type": "light"}]}]}, {"id": "1efc3706-b0df-43aa-b5d5-2ecfda6901e0", "name": "ThriveCart", "tags": [], "issuers": [], "match_rules": [{"text": "ThriveCart", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ThriveCart", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "17368174-958d-4087-afaf-9f6925c52d8d", "name": "ThriveCart", "icons": [{"id": "665aff01-67d3-4f95-971e-c7942c727f0e", "name": "ThriveCart", "type": "light"}]}]}, {"id": "1f1a8f7b-4b21-4e9d-abb6-31ba668b51ab", "name": "Rev", "tags": [], "issuers": [], "match_rules": [{"text": "Rev", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rev", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aad50bee-dff6-4e2e-9d39-0814615cb406", "name": "Rev", "icons": [{"id": "8c75a964-1d43-4f93-8825-b22f36ac2bdc", "name": "Rev", "type": "dark"}, {"id": "ec979967-c93e-4327-b2ed-f952b485e3b5", "name": "Rev", "type": "light"}]}]}, {"id": "1f732634-e6cc-4219-83d4-9e78d41372f8", "name": "Hootsuite", "tags": [], "issuers": ["Hootsuite"], "match_rules": [], "icons_collections": [{"id": "74f2a271-9922-4483-94d1-95e117c17d8a", "name": "Hootsuite", "icons": [{"id": "a6f100f1-ae77-4478-8e91-312784527a1b", "name": "Hootsuite", "type": "light"}]}]}, {"id": "1fa205a8-dc73-450f-a488-311eaa5825b6", "name": "Nexcess", "tags": [], "issuers": [], "match_rules": [{"text": "Nexcess", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nexcess", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3c6147c2-3fc5-4603-8871-9dbc130e821f", "name": "Nexcess", "icons": [{"id": "8a36b53e-2f0c-478d-b0da-63a0ac03e002", "name": "Nexcess", "type": "light"}]}]}, {"id": "1fb22909-b458-4caf-b104-22403b6560b2", "name": "Fastly", "tags": [], "issuers": [], "match_rules": [{"text": "Fastly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fastly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a7962d66-ed64-45ec-a940-eb1734f61dc2", "name": "Fastly", "icons": [{"id": "65f01df4-c734-40d6-b689-5660d9d04d92", "name": "Fastly", "type": "light"}]}]}, {"id": "1fbb656a-53a2-4fa1-aa1c-3d04e8a7a122", "name": "Hostinger", "tags": [], "issuers": [], "match_rules": [{"text": "Hostinger", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Hostinger", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6bc04722-2a84-4320-bb7a-b2fee8c8368e", "name": "Hostinger", "icons": [{"id": "4012469c-6189-4183-a3c0-b0f52e872abd", "name": "Hostinger", "type": "dark"}, {"id": "9f2f952b-4f8a-4b09-b062-58b5f59ff9e5", "name": "Hostinger", "type": "light"}]}]}, {"id": "1fc76f0a-2d9b-4628-8174-f81113e74375", "name": "Twilio", "tags": [], "issuers": ["Twilio"], "match_rules": null, "icons_collections": [{"id": "f7f34153-2231-4494-80a6-2817be0beae9", "name": "Twilio", "icons": [{"id": "3e795930-4f2e-404d-9999-e10901a8ba19", "name": "Twilio", "type": "light"}]}]}, {"id": "1ff74e4d-ca1d-4128-a20b-6c9facf952a4", "name": "Webroot", "tags": [], "issuers": [], "match_rules": [{"text": "Webroot", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Webroot", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "94936fd1-025c-4288-a083-ba2603ad335c", "name": "Webroot", "icons": [{"id": "311a7697-6b69-442e-8b2a-061190e35c1c", "name": "Webroot", "type": "light"}]}]}, {"id": "2005609a-941c-49bf-a8ef-a5907cc7b99d", "name": "Telekom", "tags": [], "issuers": ["Telekom"], "match_rules": null, "icons_collections": [{"id": "7a8b0ea6-5a96-4d2e-8ce6-c2c2924fb8c3", "name": "Telekom", "icons": [{"id": "be1ef863-6cbc-481f-bf45-77a17ff39391", "name": "Telekom", "type": "light"}]}]}, {"id": "207fb994-0828-4c1a-855e-41c4d52cfa70", "name": "Hexonet", "tags": [], "issuers": [], "match_rules": [{"text": "Hexonet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hexonet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "326ddcba-9cb9-4483-aa63-d1e65d280db5", "name": "Hexonet", "icons": [{"id": "b88dc3f0-3d93-489a-afbd-7ede6163da08", "name": "Hexonet", "type": "dark"}, {"id": "d3717c4d-7b1f-45e6-b986-1c69b0cef322", "name": "Hexonet", "type": "light"}]}]}, {"id": "20a519d7-aaa2-4f6d-a013-703bc6895b3e", "name": "FragDenStaat", "tags": [], "issuers": [], "match_rules": [{"text": "FragDenStaat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FragDenStaat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "009dcb53-a8a5-421f-8621-75d32e9e72f2", "name": "FragDenStaat", "icons": [{"id": "95c66077-5297-4e65-a646-7b32f88c3f86", "name": "FragDenStaat", "type": "light"}]}]}, {"id": "215acee1-36b6-4597-bffc-8cd403ec2614", "name": "Netim", "tags": [], "issuers": [], "match_rules": [{"text": "Netim", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Netim", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "44126549-b0b5-4211-8f1b-4cb988148ae7", "name": "Netim", "icons": [{"id": "390c2d1a-dd43-4ba4-8226-32c9721b3015", "name": "Netim", "type": "light"}]}]}, {"id": "21701630-a5d2-457c-a983-bfbf4efa801c", "name": "Epic Games", "tags": [], "issuers": ["Epic Games"], "match_rules": [], "icons_collections": [{"id": "2006f387-1bc7-4e9b-8ea7-0a8c3a9924f8", "name": "Epic Games", "icons": [{"id": "44fdaa02-9b6a-4cc5-bb38-301cd79e9267", "name": "Epic Games", "type": "dark"}, {"id": "893af163-83c6-4517-a39e-8765ba83f4b7", "name": "Epic Games", "type": "light"}]}]}, {"id": "21b12eda-626e-4173-b12a-66ee9b5a73fe", "name": "Semaphore", "tags": [], "issuers": [], "match_rules": [{"text": "Semaphore", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Semaphore", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bdfa4333-cca6-40ae-b173-92e0079b66c9", "name": "Semaphore", "icons": [{"id": "ab026c48-bb71-470f-be72-1ea99fbee263", "name": "Semaphore", "type": "light"}]}]}, {"id": "21d066cf-c0d6-4dd0-8d00-3dd627548550", "name": "OneSignal", "tags": [], "issuers": [], "match_rules": [{"text": "OneSignal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OneSignal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7ec2cec8-107b-4a84-91d1-9e3d601f52cf", "name": "OneSignal", "icons": [{"id": "239576e8-1902-40ca-9d2e-cb03a81cc66e", "name": "OneSignal", "type": "light"}]}]}, {"id": "21d5dcc4-4c1b-4d90-99d0-5cd35c815526", "name": "Zoho", "tags": [], "issuers": ["Zoho"], "match_rules": [{"text": "Zoho", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "df531f5b-5488-4aa9-87f6-d950b3ca04eb", "name": "Zoho", "icons": [{"id": "d1b82ad3-a176-439c-8fa0-737f3350c491", "name": "ZOHO", "type": "light"}]}]}, {"id": "21d63430-4977-43d5-a1e4-00cd3c390165", "name": "Advcash", "tags": [], "issuers": [], "match_rules": [{"text": "Advcash", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "03641fa7-f680-4f99-ac15-4954061e237c", "name": "Advcash", "icons": [{"id": "349c43e1-5aee-4201-9b44-ba436af8dc06", "name": "Advcash", "type": "dark"}, {"id": "84d0c85a-c739-4a0e-a6f6-cce9890b920a", "name": "Advcash", "type": "light"}]}]}, {"id": "21ef7a69-f366-4dfd-ada6-663bc67d2e8c", "name": "Fastmail", "tags": ["mail", "email", "e-mail"], "issuers": ["Fastmail"], "match_rules": null, "icons_collections": [{"id": "4d15f4f2-0c7e-41b1-a9af-be07644246c1", "name": "Fastmail", "icons": [{"id": "48b83a3b-792e-44d0-8a7d-f90cf27257c6", "name": "Fastmail", "type": "dark"}, {"id": "cf6e602d-7036-41ea-8bb8-9ae4cd4f5b1a", "name": "Fastmail", "type": "light"}]}]}, {"id": "232af909-986f-4ba7-bcfa-8c8fe05c1a14", "name": "AppFolio", "tags": [], "issuers": [], "match_rules": [{"text": "AppFolio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AppFolio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6a5e50e5-ee56-4202-b25b-817591f7cc0a", "name": "AppFolio", "icons": [{"id": "ec9b8014-94d8-42bc-8e5f-ec0b6f57fc33", "name": "AppFolio", "type": "light"}]}]}, {"id": "234be581-45e1-41d5-98fb-d8ec4201b33e", "name": "WIX", "tags": [], "issuers": ["WIX"], "match_rules": null, "icons_collections": [{"id": "386356ba-0feb-4aca-8074-dd9b38e0e664", "name": "WIX", "icons": [{"id": "28324ebf-bc7f-43b4-938a-9a085f282c85", "name": "WIX", "type": "light"}, {"id": "535a07c6-ae43-438a-8f21-e1486fd18b2a", "name": "WIX", "type": "dark"}]}]}, {"id": "235a2434-4157-4a43-b5a4-ec75190f2891", "name": "mail.de", "tags": [], "issuers": [], "match_rules": [{"text": "mail.de", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "mail.de", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3a48fd2b-0ec9-4a9a-ad63-643a389b4afa", "name": "mail.de", "icons": [{"id": "030990c7-62db-4634-ad83-2e60e294a2ea", "name": "mail.de", "type": "light"}]}]}, {"id": "23842093-c49f-4db6-a353-d561534e0f10", "name": "Awin", "tags": [], "issuers": [], "match_rules": [{"text": "Awin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Awin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9dececd7-d941-4eaa-8b9e-de7a4c46993c", "name": "Awin", "icons": [{"id": "42ef225c-3dfb-463d-baa3-bf9a841ab7a1", "name": "Awin", "type": "light"}]}]}, {"id": "23d4f93d-c982-49e6-9e31-aa5eda593931", "name": "WhaleFin", "tags": [], "issuers": [], "match_rules": [{"text": "WhaleFin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "WhaleFin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47f571f7-d7c1-4f10-9eca-7434a4f8a5af", "name": "WhaleFin", "icons": [{"id": "0cada5ac-9590-42f9-b048-302235ef5522", "name": "WhaleFin", "type": "light"}]}]}, {"id": "23da4e5e-905a-42bf-9f57-421ca0028ccf", "name": "Spreedly", "tags": [], "issuers": [], "match_rules": [{"text": "Spreedly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Spreedly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "95dd928b-9ccb-4e5c-b661-3ff2686a7bbe", "name": "Spreedly", "icons": [{"id": "4352b762-180c-46dc-9ec2-fb2605d90c98", "name": "Spreedly", "type": "light"}]}]}, {"id": "23eea0ca-0ac4-459e-8782-f2a8dfa632de", "name": "CoinDCX", "tags": [], "issuers": ["CoinDCX"], "match_rules": [], "icons_collections": [{"id": "8bc3de93-53c3-42bf-8791-6249a7f8a718", "name": "CoinDCX", "icons": [{"id": "7b9fb541-eb7a-4cc4-92ba-281697220263", "name": "CoinDCX", "type": "light"}, {"id": "f5ada260-5149-441c-a40b-32b38fdadec0", "name": "CoinDCX", "type": "dark"}]}]}, {"id": "249073bd-77de-455b-9158-5126dc689e35", "name": "Xink", "tags": [], "issuers": [], "match_rules": [{"text": "Xink", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Xink", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "08efbf4c-fc53-47e1-b222-73cc56b700d3", "name": "Xink", "icons": [{"id": "f156fcb3-3f09-47a8-a63e-922ba48ae2c0", "name": "Xink", "type": "light"}]}]}, {"id": "24b4d056-be58-4810-9cc7-7d39b2a1ee73", "name": "OnMail", "tags": [], "issuers": [], "match_rules": [{"text": "OnMail", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "OnMail", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a0d99d43-409e-4969-922e-356b14a831ef", "name": "OnMail", "icons": [{"id": "f5fa7769-8ff4-4ad2-8171-258a35158c01", "name": "OnMail", "type": "light"}]}]}, {"id": "24c038c9-41b6-46b2-bafd-046fc074ef54", "name": "Karatbit", "tags": [], "issuers": ["Karatbit"], "match_rules": [], "icons_collections": [{"id": "b887ca8f-06dc-4d85-9990-03c1dea2060f", "name": "Karatbit", "icons": [{"id": "ba63896a-85ec-4d14-b5ff-4d81d24fd8e2", "name": "Karatbit", "type": "light"}]}]}, {"id": "2523a652-bbdb-4d9f-81c0-11d48ac4c227", "name": "Getscreen.me", "tags": [], "issuers": [], "match_rules": [{"text": "Getscreen.me", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Getscreen.me", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "970a7af5-a2e0-4420-80b4-43a13913d373", "name": "Getscreen.me", "icons": [{"id": "47c13f9a-e426-469a-b273-b0846cc2b0e5", "name": "Getscreen.me", "type": "light"}]}]}, {"id": "25dcd68c-0c9d-4942-8f94-46c0d6136b67", "name": "Cal.com", "tags": [], "issuers": [], "match_rules": [{"text": "cal.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "cal.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "56f0cd99-b578-470f-a71a-1560d3145115", "name": "Cal.com", "icons": [{"id": "01c6a190-2de2-4711-b936-2957e8870234", "name": "cal.com", "type": "light"}, {"id": "a4a5df6e-6575-4b6e-99a2-7dca8b418c01", "name": "cal.com", "type": "dark"}]}]}, {"id": "25dfebc9-e58c-4beb-a1f2-e8e1cddb4ed4", "name": "Later", "tags": [], "issuers": ["APP.LATER.COM"], "match_rules": null, "icons_collections": [{"id": "11a4b58d-5001-4c15-8206-f576228e5787", "name": "Later", "icons": [{"id": "ad3d5d3a-e703-4c32-b5ff-516c5648dd48", "name": "Later", "type": "light"}]}]}, {"id": "25f3c15e-335a-44a3-973e-b468581db19e", "name": "Newegg", "tags": [], "issuers": ["Newegg"], "match_rules": null, "icons_collections": [{"id": "f68a6dd7-04af-4bb4-861e-bfecc996fa0f", "name": "Newegg", "icons": [{"id": "99b0d21a-005d-4189-80b9-7bcfba52f37e", "name": "Newegg", "type": "light"}, {"id": "c8b6a5fa-2dd2-4a06-aa30-1d33dcd7d9cb", "name": "Newegg", "type": "dark"}]}]}, {"id": "261606e8-1535-454d-b762-dbe5f20f3a17", "name": "Braintree", "tags": [], "issuers": ["Braintree Production"], "match_rules": [], "icons_collections": [{"id": "cc6d4c9d-7ab8-4cda-ba17-7289d6a1261b", "name": "Braintree", "icons": [{"id": "d2404791-2777-4fe6-8499-33776fa75332", "name": "Braintree", "type": "light"}]}]}, {"id": "26455f8e-9672-438e-814c-47b4a438115f", "name": "University of Oxford", "tags": [], "issuers": [], "match_rules": [{"text": "University of Oxford", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Oxford", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f4263e6c-9da8-4595-a766-4a1e27708201", "name": "University of Oxford", "icons": [{"id": "ff363249-1b1d-494e-b04f-414a7fad7904", "name": "University of Oxford", "type": "light"}]}]}, {"id": "26482eb4-efc5-4efd-9ec7-d133634e64d0", "name": "SSLTrust", "tags": [], "issuers": [], "match_rules": [{"text": "SSLTrust", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SSLTrust", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47b4796a-b294-4f8b-95e4-d01da8820523", "name": "SSLTrust", "icons": [{"id": "7f478b36-b1d5-40c7-9663-a9887b98511f", "name": "SSLTrust", "type": "light"}]}]}, {"id": "2671591e-ddfb-4077-bf6f-5422b902e8e5", "name": "Cloud 66", "tags": [], "issuers": [], "match_rules": [{"text": "Cloud 66", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cloud 66", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0cbc497a-1247-48ba-bb12-ec187e98b27f", "name": "Cloud 66", "icons": [{"id": "228d8579-472f-420f-b937-9a2699407ed0", "name": "Cloud 66", "type": "light"}]}]}, {"id": "26ac0a8e-28ab-43e0-b93a-c728df165800", "name": "Telderi", "tags": [], "issuers": ["Telderi"], "match_rules": [], "icons_collections": [{"id": "c5981a81-ff16-4d3f-abb2-e297140db537", "name": "Telderi", "icons": [{"id": "96e86ce4-9f9a-4def-8d0a-c6c4b4ebe13b", "name": "Telderi", "type": "light"}]}]}, {"id": "27232a1d-be11-4189-b56b-78826c35b981", "name": "Digital Surge", "tags": [], "issuers": [], "match_rules": [{"text": "Digital Surge", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Digital Surge", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cdb8a648-f731-487f-88fa-fd3cedd58d77", "name": "Digital Surge", "icons": [{"id": "202023ec-7402-45d4-b80b-dd722e9db885", "name": "Digital Surge", "type": "light"}]}]}, {"id": "2726439f-7b21-45f0-805e-d8acfa1eb84c", "name": "AVG", "tags": [], "issuers": ["AVG"], "match_rules": null, "icons_collections": [{"id": "4fcd28ca-176d-441a-bd66-e10d5f9e40a1", "name": "AVG", "icons": [{"id": "41b2f940-5999-4b12-9a39-148e80ea17f7", "name": "AVG", "type": "light"}]}]}, {"id": "2759aca5-50de-47bf-8baa-776a4f781347", "name": "Everlaw", "tags": [], "issuers": [], "match_rules": [{"text": "Everlaw", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Everlaw", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "08ffda58-bcab-4b42-a8aa-8f2e1fdc13e5", "name": "Everlaw", "icons": [{"id": "a3fd23e7-19a8-42f8-9915-f9da9918e63e", "name": "Everlaw", "type": "light"}, {"id": "ca84f876-a214-453c-a135-8f17ab99ea72", "name": "Everlaw", "type": "dark"}]}]}, {"id": "27a1fa34-4649-4fda-844f-dbf23d43eed8", "name": "Rippling", "tags": [], "issuers": [], "match_rules": [{"text": "Rippling", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rippling", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ddbd79e3-8288-40eb-bd2b-3afedba111c9", "name": "Rippling", "icons": [{"id": "02077b16-bdd1-433e-81c7-9b8d69a0a8aa", "name": "Rippling", "type": "light"}, {"id": "a3787ec7-fbeb-44e5-a1cb-101435db5114", "name": "Rippling", "type": "dark"}]}]}, {"id": "27a6e1b8-42fc-4ae9-b277-542b45e3862f", "name": "Coda", "tags": [], "issuers": [], "match_rules": [{"text": "Coda", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coda", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a7d645e3-28bb-4e7b-8283-ec5e8b899423", "name": "Coda", "icons": [{"id": "d10f01b2-e41e-42c7-abbb-c05b653f06ae", "name": "Coda", "type": "light"}]}]}, {"id": "27b7190a-0414-4bb9-abaf-ef75a461e5a2", "name": "Alarm.com", "tags": [], "issuers": [], "match_rules": [{"text": "Alarm.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Alarm.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "49f85b32-651c-421d-b564-2afac43b4591", "name": "Alarm.com", "icons": [{"id": "61d576c9-4b27-4fe4-bf6a-86d348b4f206", "name": "Alarm.com", "type": "light"}]}]}, {"id": "280053ba-084f-4f1f-a672-524dc7ba09d9", "name": "TrueNAS Core", "tags": [], "issuers": ["iXsystems"], "match_rules": [], "icons_collections": [{"id": "3d17c742-2a60-44fc-931a-60537102d17c", "name": "TrueNAS Core", "icons": [{"id": "d2730466-a821-4636-b245-6edd18ca24e1", "name": "TrueNAS Core", "type": "light"}]}]}, {"id": "2820a93a-f4d4-484a-adaa-f46b186709c4", "name": "Yahoo", "tags": [], "issuers": ["Yahoo"], "match_rules": [], "icons_collections": [{"id": "888f5964-f793-43fc-a635-3cdca36ba68e", "name": "Yahoo", "icons": [{"id": "d29a49ea-6b26-49c0-8e0e-890fa44aec4e", "name": "Yahoo", "type": "light"}]}]}, {"id": "28990ab3-2a7d-47be-83da-6a3d3faaf822", "name": "CharlieHR", "tags": [], "issuers": [], "match_rules": [{"text": "CharlieHR", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CharlieHR", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e63a3cf7-e7e6-48dc-b230-1da4c28e04c1", "name": "CharlieHR", "icons": [{"id": "afa6a03c-925d-4159-84d8-72f57d7af192", "name": "CharlieHR", "type": "light"}]}]}, {"id": "29266734-6296-49ce-bf2e-b346762b5b42", "name": "Mercado Livre", "tags": [], "issuers": ["Mercado Livre"], "match_rules": [], "icons_collections": [{"id": "5cb7030d-45e2-45a4-b8c6-2b5d61a3783e", "name": "Mercado Libre", "icons": [{"id": "0b7a88a1-4c27-41b7-b0a9-242b5bf36589", "name": "Mercado Libre", "type": "light"}]}]}, {"id": "2954285f-bb31-4666-89aa-0192f8633d8f", "name": "Pobox", "tags": [], "issuers": [], "match_rules": [{"text": "Pobox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pobox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8faada07-7203-4745-a0a0-3e0c8ab2a761", "name": "Pobox", "icons": [{"id": "3ccd1e3a-08d1-4c72-adde-31d259468c4e", "name": "Pobox", "type": "light"}]}]}, {"id": "29661992-71dd-42ba-9d45-2af7bdba4276", "name": "SalesForce", "tags": [], "issuers": [], "match_rules": [], "icons_collections": [{"id": "8573ca05-5712-4043-b243-0d01e40c7b42", "name": "SalesForce", "icons": [{"id": "99aa31c7-eafa-4ea7-8346-8a8f1ddd0895", "name": "SalesForce", "type": "light"}]}]}, {"id": "296ed6d3-2a00-4188-a6fb-65a7fa61ffb3", "name": "BtcTurk", "tags": [], "issuers": [], "match_rules": [{"text": "BtcTurk", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BtcTurk", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4613a6c0-9326-46ad-bc7f-76567cd98116", "name": "BtcTurk", "icons": [{"id": "9c305a11-3024-452a-a486-94d159176708", "name": "BtcTurk", "type": "light"}]}]}, {"id": "29a9bb30-c40f-4b43-8877-2460915178c5", "name": "1Password", "tags": ["one", "password"], "issuers": ["1Password"], "match_rules": [], "icons_collections": [{"id": "e8c7b9fd-94be-4015-a6be-ffbd626aaa8b", "name": "1Password", "icons": [{"id": "e61d3310-7255-454e-9ce6-f57e63e94fbd", "name": "1Password", "type": "dark"}, {"id": "ed2d4a6e-1781-442e-b20a-35c1211c42a1", "name": "1Password", "type": "light"}]}]}, {"id": "29c7acdb-ab9f-4775-b09a-cefa18a95c12", "name": "ACTIVE 24", "tags": [], "issuers": [], "match_rules": [{"text": "active 24", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "active 24", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "active24", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "active24", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7eceab5b-04fc-4231-a766-70ddef0eb4fe", "name": "ACTIVE 24", "icons": [{"id": "aed97dc4-c88b-4a1d-b91e-203ee6844b3d", "name": "ACTIVE 24", "type": "light"}]}]}, {"id": "29d3aa37-993e-4ed1-84b1-534a6a64e4f0", "name": "LCN.com", "tags": [], "issuers": [], "match_rules": [{"text": "LCN.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LCN.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b128fe49-ee56-43b3-bf6c-c8f4fabfb247", "name": "LCN.com", "icons": [{"id": "5c7242ea-9d04-420d-a0bc-b25486ebb8f7", "name": "LCN.com", "type": "light"}]}]}, {"id": "2a92a644-decd-4275-ae71-927e988d905c", "name": "Openprovider", "tags": [], "issuers": [], "match_rules": [{"text": "Openprovider", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Openprovider", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fcf0a204-9a58-4383-848b-fc1e677e0e4c", "name": "Openprovider", "icons": [{"id": "0be2e0ef-77df-4b56-ab13-558ee1f1128d", "name": "Openprovider", "type": "light"}, {"id": "b3b323a0-59f5-448a-9307-c06715f8c87d", "name": "Openprovider", "type": "dark"}]}]}, {"id": "2aa05de2-85d1-4895-b404-4a472827a777", "name": "bunny.net", "tags": [], "issuers": [], "match_rules": [{"text": "bunny.net", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "bunny.net", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3f20ab01-3db6-436a-9f43-219efd1edf6b", "name": "bunny.net", "icons": [{"id": "d5ff917c-ca35-4000-a9d9-52a34053d825", "name": "bunny.net", "type": "light"}]}]}, {"id": "2ad8dcb5-8eac-43c8-a440-324ca8472f9f", "name": "TruckersMP", "tags": [], "issuers": ["TruckersMP.com"], "match_rules": null, "icons_collections": [{"id": "edddabb5-5986-4bd2-b7a7-dec4ad3cf0ef", "name": "TruckersMP", "icons": [{"id": "3e2f7898-eb68-466a-b25f-3faf89b85a48", "name": "TruckersMP", "type": "light"}, {"id": "b85755ba-5e1e-4d01-b787-31bf4e25d14a", "name": "TruckersMP", "type": "dark"}]}]}, {"id": "2aef430d-017c-4acf-88df-e1526e7ae4d3", "name": "Registro.br", "tags": [], "issuers": ["Registro.br"], "match_rules": null, "icons_collections": [{"id": "7797b564-fed5-418e-b9a3-705c953c16e2", "name": "Registro.br", "icons": [{"id": "4507a29a-ae0e-42c2-b8b9-2fd64acd77aa", "name": "Registro.br", "type": "light"}]}]}, {"id": "2b17d1bd-04ea-4e46-81da-3d553735984c", "name": "intigriti", "tags": [], "issuers": [], "match_rules": [{"text": "intigriti", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "intigriti", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "78605a70-0af7-475f-89ce-a8208b7299e9", "name": "intigriti", "icons": [{"id": "acb0b68f-e5a7-436e-89ee-78f6db0cd7e7", "name": "intigriti", "type": "light"}]}]}, {"id": "2b226d30-bd12-4663-a80b-95eab7a5ca6a", "name": "Formspree", "tags": [], "issuers": [], "match_rules": [{"text": "Formspree", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Formspree", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0d10e7f6-6a46-4ad2-95b0-555433510db6", "name": "Formspree", "icons": [{"id": "4930c606-ecd1-4404-80fb-695d4e1e44f5", "name": "Formspree", "type": "light"}]}]}, {"id": "2b825a32-934a-4282-b1ec-586cae44c590", "name": "InVision", "tags": [], "issuers": [], "match_rules": [{"text": "InVision", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "InVision", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e3faa1c3-d5be-4c8a-9413-54690be1ea53", "name": "InVision", "icons": [{"id": "4b07b0be-c942-455f-b659-b8ec73a909de", "name": "InVision", "type": "light"}]}]}, {"id": "2bba5977-2ad5-4f10-a576-9b536ffdb99b", "name": "ARIN", "tags": [], "issuers": [], "match_rules": [{"text": "arin", "field": "issuer", "matcher": "starts_with", "ignore_case": true}, {"text": "arin", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "bb32b5ea-54fb-4d7f-ae6a-85fc5d319eb9", "name": "ARIN", "icons": [{"id": "0f21b324-9f4b-49b3-834a-15f3a352fbc6", "name": "Arin", "type": "dark"}, {"id": "bd4153a2-3ddd-4146-bbf3-232bec865ea5", "name": "ARIN", "type": "light"}]}]}, {"id": "2befb349-e59f-4898-a6c3-18021b29bad5", "name": "PC Case Gear", "tags": [], "issuers": [], "match_rules": [{"text": "PC Case Gear", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "PC Case Gear", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "654c43e2-5c18-481f-8728-03ef64a471e4", "name": "PC Case Gear", "icons": [{"id": "5a48457e-2ae4-494b-8618-2a92a4058ec5", "name": "PC Case Gear", "type": "light"}]}]}, {"id": "2c03108b-354f-4fea-a348-22106b09892d", "name": "Bitflyer", "tags": [], "issuers": [], "match_rules": [{"text": "BitFlyer", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "BitFlyer", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5c66b6d2-748a-49d3-89ae-a350f0ad6199", "name": "Bitflyer", "icons": [{"id": "0c338142-e300-4845-be69-ea931105de43", "name": "Bitflyer", "type": "light"}]}]}, {"id": "2c406558-a7fb-4c0a-bfe1-9287cfd6eee4", "name": "Wargaming", "tags": [], "issuers": ["wargaming.net"], "match_rules": [{"text": "wargaming.net", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6a6f2199-7cef-41ea-9294-ec735000f369", "name": "Wargaming", "icons": [{"id": "105ad3c7-dce3-4d83-be57-6f1f6277f662", "name": "Wargaming", "type": "dark"}, {"id": "336451f0-cb76-4bb1-93d9-a8c209add13c", "name": "Wargaming", "type": "light"}]}]}, {"id": "2c41b3d7-8911-4fe5-a4ad-269c584af59e", "name": "Nitrado", "tags": [], "issuers": [], "match_rules": [{"text": "Nitrado", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nitrado", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f428cd5b-6cb5-46d0-b01a-27730f941dcc", "name": "Nitrado", "icons": [{"id": "bf43f62e-763e-46a5-8194-ffdf2a1a358f", "name": "Nitrado", "type": "light"}]}]}, {"id": "2d27e715-0b4f-4f98-9a1b-cab5feb56061", "name": "Looker", "tags": [], "issuers": [], "match_rules": [{"text": "Looker", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Looker", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eb8db1ae-0516-40cb-ae5a-7196303e5af5", "name": "Looker", "icons": [{"id": "aee20af6-fee2-4cd8-93c4-f0f2471ed98b", "name": "Looker", "type": "light"}]}]}, {"id": "2dba5c39-8c5a-4dd1-9080-1615d2ab9930", "name": "GREE", "tags": [], "issuers": [], "match_rules": [{"text": "GREE", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GREE", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "769e6c9b-b138-42e7-975f-4059a26467d6", "name": "GREE", "icons": [{"id": "28c7326f-a1d0-480e-bdcb-b7be844509a2", "name": "GREE", "type": "light"}]}]}, {"id": "2dc6e938-d911-4bed-ab56-725cfcb64db7", "name": "Sumo Logic", "tags": [], "issuers": [], "match_rules": [{"text": "Sumo Logic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sumo Logic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0dd4ff02-9548-4de3-a208-0e36e4623e6c", "name": "Sumo Logic", "icons": [{"id": "26b834c6-60dd-4789-9792-9a2aa1621e0d", "name": "Sumo Logic", "type": "light"}]}]}, {"id": "2ddbb46e-64b8-42ec-9e69-18fd494cb67c", "name": "Wellfound", "tags": [], "issuers": [], "match_rules": [{"text": "Wellfound", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wellfound", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ac84478a-8890-4e8a-ab7d-667a5f9d95ac", "name": "Wellfound", "icons": [{"id": "c40172e4-498c-4107-b2ab-155b6141162b", "name": "Wellfound", "type": "light"}, {"id": "e298d6f7-3091-4cf4-81ee-fced542f0e24", "name": "Wellfound", "type": "dark"}]}]}, {"id": "2e6c3119-1640-4107-bfa9-8fa653526712", "name": "Addiko Bank", "tags": [], "issuers": [], "match_rules": [{"text": "Addiko", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Addiko", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4c0dc113-103f-44bc-bc2a-68cc75b8d77e", "name": "Addiko Bank", "icons": [{"id": "9f289489-a53f-4f45-95a2-4175a35e7899", "name": "Addiko Bank", "type": "light"}]}]}, {"id": "2eb3a952-7e2d-4088-88f0-0b0c2bdde135", "name": "phpMyAdmin", "tags": [], "issuers": ["phpMyAdmin"], "match_rules": [{"text": "phpMyAdmin", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3a742037-5520-4679-ad2f-e74f8cab7e25", "name": "phpMyAdmin", "icons": [{"id": "c033d80e-73bd-4308-909d-32a6f28793ec", "name": "phpMyAdmin", "type": "light"}]}]}, {"id": "2ed97493-8e5a-4b96-8e85-36d67c92c40a", "name": "Sophos SFOS", "tags": [], "issuers": ["Sophos SFOS"], "match_rules": [], "icons_collections": [{"id": "50aa288d-7f37-4a68-a110-ef9f460c972b", "name": "Sophos SFOS", "icons": [{"id": "d6f04392-d947-46a8-b836-878737e6fd8d", "name": "Sophos SFOS", "type": "light"}]}]}, {"id": "2ee903ff-a9fd-44ce-970e-47fea122a860", "name": "Nord Account", "tags": ["vpn"], "issuers": ["Nord+Account", "Nord Account"], "match_rules": [], "icons_collections": [{"id": "f7a9cbe9-7a5d-42bc-9b2f-93a8254a2660", "name": "Nord Account", "icons": [{"id": "ddaecc33-2298-471b-8a6d-f728407c3045", "name": "Nord Account", "type": "light"}, {"id": "fbd08b46-4cc9-4939-aeda-76f1ce8e4b5a", "name": "Nord Account", "type": "dark"}]}]}, {"id": "2f17c720-647e-48ac-a306-b680954f545c", "name": "Nuclino", "tags": [], "issuers": ["Nuclino"], "match_rules": null, "icons_collections": [{"id": "65608700-0814-41ea-bcc7-7ba73e00dce8", "name": "Nuclino", "icons": [{"id": "179e17e5-2f3c-4466-95e1-49b3fadd257d", "name": "Nuclino", "type": "light"}]}]}, {"id": "2f288386-08f9-408f-8428-d78a564ee5a3", "name": "Action1", "tags": [], "issuers": [], "match_rules": [{"text": "Action1", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Action1", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1a39524f-c116-4dcc-8a76-14e71c48daa3", "name": "Action1", "icons": [{"id": "60453b61-5899-4234-9145-1f4ff35bc681", "name": "Action1", "type": "light"}]}]}, {"id": "2f866d69-c41d-4916-9eaa-ed81c7e913f5", "name": "Epik", "tags": [], "issuers": [], "match_rules": [{"text": "Epik", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Epik", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b7e54bbb-a382-4e91-84a3-beb58369d64e", "name": "Epik", "icons": [{"id": "9899ba22-f221-4e42-861b-14b2ac4f7202", "name": "Epik", "type": "dark"}, {"id": "bd44f221-b6aa-494b-9ea9-6d173c65ecae", "name": "Epik", "type": "light"}]}]}, {"id": "3044f4ad-0fdf-4371-a6a3-57917794ba0b", "name": "CoinTiger", "tags": [], "issuers": [], "match_rules": [{"text": "CoinTiger", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinTiger", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0e0072bb-ea10-461d-8474-44682a7bcefc", "name": "CoinTiger", "icons": [{"id": "d8bed14d-9e3b-42a1-bbdd-071869689291", "name": "CoinTiger", "type": "light"}]}]}, {"id": "3065177b-4d4c-4d13-aaa6-c2f2cb5edabd", "name": "University of Pennsylvania", "tags": [], "issuers": [], "match_rules": [{"text": "University of Pennsylvania", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Pennsylvania", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "adbdaf63-9247-4218-bc2b-b0f27a863454", "name": "University of Pennsylvania", "icons": [{"id": "a72fb234-e943-49ee-b3cb-4ff855758dfc", "name": "University of Pennsylvania", "type": "light"}]}]}, {"id": "3080917e-b830-4692-8043-27b75b765e35", "name": "Onet", "tags": [], "issuers": [], "match_rules": [{"text": "Onet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Onet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8fef4e7f-3d12-4ede-abeb-d2bdbf6b3d14", "name": "Onet", "icons": [{"id": "9efb0652-5735-47b8-86a7-78ff3378ac91", "name": "Onet", "type": "light"}]}]}, {"id": "31282f76-fabc-4cf0-9bb3-7f0ff4a31b81", "name": "Directnic", "tags": [], "issuers": [], "match_rules": [{"text": "Directnic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Directnic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f8158ac8-d2ee-48a3-ba12-f0f9f7530a48", "name": "Directnic", "icons": [{"id": "e0d4c265-4763-4a92-8488-9cd4166e85e1", "name": "Directnic", "type": "light"}]}]}, {"id": "3146ebfd-4d2f-4dca-83aa-699d01d2ec9a", "name": "SparkPost", "tags": [], "issuers": [], "match_rules": [{"text": "SparkPost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SparkPost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3c0870f3-16bf-4651-a21d-9dc781a234fb", "name": "SparkPost", "icons": [{"id": "de0944ae-d280-40f4-ac42-ea5841e525dd", "name": "SparkPost", "type": "light"}]}]}, {"id": "314ca83b-73ed-432b-b6ab-ee00fae0a44d", "name": "StartMail", "tags": [], "issuers": [], "match_rules": [{"text": "StartMail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StartMail", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9123bad4-5110-4d36-beba-b4b661ef1ed7", "name": "StartMail", "icons": [{"id": "1ec2d68b-ae35-4c6c-b26c-744f7c54fda3", "name": "StartMail", "type": "light"}]}]}, {"id": "316212f6-5086-4bb2-8ca1-fdd411280a23", "name": "Intuit", "tags": [], "issuers": ["Intuit"], "match_rules": [], "icons_collections": [{"id": "a9dac0da-53ef-4c0d-b4d0-b7a23666be93", "name": "Intuit", "icons": [{"id": "55799bee-7e26-460e-a643-29e6ece35361", "name": "Intuit", "type": "light"}]}]}, {"id": "31aa8c45-8c81-4039-a617-22fad52486af", "name": "Jottacloud", "tags": [], "issuers": ["Jottacloud"], "match_rules": null, "icons_collections": [{"id": "5847170f-ef51-49ef-a349-72874dc4afe7", "name": "Jottacloud", "icons": [{"id": "2fab006b-31d8-4bce-9048-e93256412b08", "name": "Jottacloud", "type": "light"}]}]}, {"id": "31bec354-b184-44e3-bbe9-43fd3e9d3d58", "name": "Newton", "tags": [], "issuers": [], "match_rules": [{"text": "Newton", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Newton", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ce8fe4b5-becb-4c0d-976a-7c4b9693f131", "name": "Newton", "icons": [{"id": "1c7f313a-8373-47ad-912f-f1da36a0f19f", "name": "Newton", "type": "light"}]}]}, {"id": "31e746da-d4d7-400b-ac87-006cf7f77e39", "name": "Rec Room", "tags": [], "issuers": ["RecRoom"], "match_rules": null, "icons_collections": [{"id": "c924f5d5-dc50-4121-b96f-b61dc8364ea6", "name": "Rec Room", "icons": [{"id": "64192027-e51f-4f60-a10f-5abdeeb1b744", "name": "Rec Room", "type": "dark"}, {"id": "9a019bbf-9b58-4ec7-8961-df0a5e8f6c56", "name": "Rec Room", "type": "light"}]}]}, {"id": "31ea7562-18b7-410f-8023-657cbd65b077", "name": "RubyGems.org", "tags": [], "issuers": [], "match_rules": [{"text": "RubyGems.org", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RubyGems.org", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a0d0c753-2b51-48bf-946c-e7fe3fc08dbf", "name": "RubyGems.org", "icons": [{"id": "a243b618-3dde-4628-9b59-c032ad7b2585", "name": "RubyGems.org", "type": "light"}]}]}, {"id": "320ff1b5-1956-49d7-b842-42e996fb5f31", "name": "Equinix Metal", "tags": [], "issuers": [], "match_rules": [{"text": "Equinix Metal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Equinix Metal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "95753570-0885-46b9-ac29-d653476c97c5", "name": "Equinix Metal", "icons": [{"id": "19915c25-9d01-48c7-870e-6808258fb5ac", "name": "Equinix Metal", "type": "light"}]}]}, {"id": "321c0893-aaa0-487f-8c0a-5099543378d2", "name": "BitSight", "tags": [], "issuers": [], "match_rules": [{"text": "BitSight", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitSight", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a00a4a57-fe95-4bc1-bd9d-1e20319e0525", "name": "BitSight", "icons": [{"id": "29105a39-51ce-46e7-bf63-bbfc97c158ae", "name": "BitSight", "type": "light"}]}]}, {"id": "323a5859-1da6-4fa8-8ec9-e90e44575f6d", "name": "USCIS", "tags": [], "issuers": ["USCIS+myAccount", "USCIS myAccount"], "match_rules": [], "icons_collections": [{"id": "55a7126c-c74b-4030-be46-33baf1d41794", "name": "USCIS", "icons": [{"id": "68cd26a5-04f1-4d74-aaac-129dacfbfddb", "name": "USCIS", "type": "light"}]}]}, {"id": "3299e7f3-8231-45e4-8837-3277574f2368", "name": "Glassdoor", "tags": [], "issuers": ["mfa.glassdoor.com"], "match_rules": null, "icons_collections": [{"id": "e2383048-3ced-4f07-b637-22ac5781ed75", "name": "Glassdoor", "icons": [{"id": "deb814e0-f5de-4b32-b588-f86d33619de4", "name": "Glassdoor", "type": "light"}]}]}, {"id": "33234ba7-e70e-434f-8fc0-79e64c9a9c5b", "name": "DATEV", "tags": [], "issuers": ["Datev"], "match_rules": null, "icons_collections": [{"id": "4bbf45ea-7eb1-4ab8-a2c8-cd130c5f922e", "name": "DATEV", "icons": [{"id": "25e05330-3480-4149-8f6d-aa80ea5f93f1", "name": "DATEV", "type": "light"}]}]}, {"id": "33368632-d426-425b-9c0e-ff8cabaa0c07", "name": "Fritzbox", "tags": [], "issuers": [], "match_rules": [{"text": "fritz", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "fritz", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "780ee78b-a61b-46f3-9faa-0b6cf3f7479d", "name": "Fritzbox", "icons": [{"id": "1cc781fc-21e0-41ac-bee7-a8851dddad30", "name": "Fritzbox", "type": "light"}]}]}, {"id": "33b29957-e237-4eeb-b89e-069ebc6d3201", "name": "ConnectWise", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "5fabb7c6-f73c-45e1-8cd2-aea9a3923719", "name": "ConnectWise", "icons": [{"id": "452253a0-74f7-4cdf-98ff-cd325a4465eb", "name": "ConnectWise", "type": "light"}, {"id": "af7a1dfd-c69d-4ff4-9e81-8cf139a88ba2", "name": "ConnectWise", "type": "dark"}]}]}, {"id": "34044cac-65fc-42a5-9705-3a098f9a7822", "name": "Buildium", "tags": [], "issuers": [], "match_rules": [{"text": "Buildium", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Buildium", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "034a9d9c-e124-4fe3-ab27-14a8ec6151fd", "name": "Buildium", "icons": [{"id": "31784939-0ea7-4025-8ab4-a4e4d6e570de", "name": "Buildium", "type": "light"}]}]}, {"id": "348a8fef-66eb-43e5-ba64-fcd02ca2ba58", "name": "BitForex", "tags": [], "issuers": [], "match_rules": [{"text": "BitForex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitForex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dd8aa2c7-7155-4ae4-8568-8165dbe948b3", "name": "BitForex", "icons": [{"id": "54a26586-f5e4-4cbc-9595-e26932fe23c0", "name": "BitForex", "type": "light"}]}]}, {"id": "34dab018-33d1-4677-b728-25aa9357ff29", "name": "Samsung Account", "tags": [], "issuers": ["Samsung Account"], "match_rules": null, "icons_collections": [{"id": "f01f2f69-0b38-45bf-92b8-3594d61280ef", "name": "Samsung Account", "icons": [{"id": "c70fb155-9268-426d-b6a3-ba4c505e7207", "name": "Samsung Account", "type": "light"}]}]}, {"id": "34ee304a-f3ea-494a-b26e-ff2262285451", "name": "IBM", "tags": ["IBMid"], "issuers": ["IBMid"], "match_rules": [], "icons_collections": [{"id": "810616ca-b2b5-45d1-916e-4f4d467ab276", "name": "IBM", "icons": [{"id": "92405e18-7016-4e27-aa20-04a42b056736", "name": "IBM", "type": "dark"}, {"id": "aa8ddfda-3d64-497b-8c3e-d4d57ea29276", "name": "IBM", "type": "light"}]}]}, {"id": "35403e84-dec1-49a1-8633-5da2c9e9e5c0", "name": "RedShelf", "tags": [], "issuers": [], "match_rules": [{"text": "RedShelf", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RedShelf", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1e96a88a-6add-45cf-91c3-d8830488d652", "name": "RedShelf", "icons": [{"id": "2ef0bd29-0035-4cc3-8876-13777cbb690c", "name": "RedShelf", "type": "light"}]}]}, {"id": "35498c4e-19ae-4e2b-92de-b110baace547", "name": "WhiteBIT", "tags": [], "issuers": ["WhiteBIT"], "match_rules": [{"text": "WhiteBIT", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "df2ff12e-ce9b-4f16-842e-7d1c33960e89", "name": "WhiteBIT", "icons": [{"id": "6baa99a0-c76a-484d-bcfd-3659febf944e", "name": "WhiteBIT", "type": "light"}, {"id": "7c6e1dfd-e06a-4f6f-96c9-38e0792990ca", "name": "WhiteBIT", "type": "dark"}]}]}, {"id": "35646e51-c710-4f22-846e-aa87ee5e4b9e", "name": "Txbit", "tags": [], "issuers": [], "match_rules": [{"text": "Txbit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Txbit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a114f79d-8e7e-4bf3-b3ff-b777151aa322", "name": "Txbit", "icons": [{"id": "9e37dba2-7124-469f-8825-3a9cf0143bc6", "name": "Txbit", "type": "light"}]}]}, {"id": "35ea48b5-450c-42f5-bf05-68c3998a7169", "name": "Fathom Analytics", "tags": [], "issuers": [], "match_rules": [{"text": "Fathom Analytics", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fathom Analytics", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c78530d9-9ea5-4861-babc-f6186512a1d5", "name": "Fathom Analytics", "icons": [{"id": "0f67e484-33d9-4cab-87e9-2c417742b6ff", "name": "Fathom Analytics", "type": "light"}]}]}, {"id": "362fa93b-4dc3-43c8-a666-bde335ba5edd", "name": "HP", "tags": ["hewlett", "packard", "hewlett-packard"], "issuers": ["HP"], "match_rules": null, "icons_collections": [{"id": "b4d61a75-27f5-4b12-9c3d-04d3e1c28729", "name": "HP", "icons": [{"id": "240504d9-897a-4cca-84e8-db95253afbc9", "name": "HP", "type": "light"}]}]}, {"id": "364a192f-39ef-4f2f-a419-d35f5cccb3cd", "name": "manitu", "tags": [], "issuers": [], "match_rules": [{"text": "mein.manitu.de", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "af6e7769-cef5-481c-878d-45e188b840ec", "name": "manitu", "icons": [{"id": "8ad2cb74-da56-4d3b-aeea-3ca56535dc1c", "name": "manitu", "type": "light"}]}]}, {"id": "3680799b-8f4a-4711-8159-d8537f49db77", "name": "ProfitWell", "tags": [], "issuers": [], "match_rules": [{"text": "ProfitWell", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ProfitWell", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "da090fe5-454b-4a44-8900-a78780133578", "name": "ProfitWell", "icons": [{"id": "01915cca-de45-41f0-adf5-0f0637e516a9", "name": "ProfitWell", "type": "dark"}, {"id": "2350419d-50e5-42e9-8ca6-c6ea46cf8694", "name": "ProfitWell", "type": "light"}]}]}, {"id": "368c435d-445c-427c-b39c-8bac7179e105", "name": "VoIP.ms", "tags": [], "issuers": [], "match_rules": [{"text": "VoIP.ms", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VoIP.ms", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8c88abe6-224e-4ab4-b560-ae79e1d00993", "name": "VoIP.ms", "icons": [{"id": "65927472-9d85-46d2-9560-932a3b358390", "name": "VoIP", "type": "dark"}, {"id": "75919b7c-5c99-4161-8a6e-3a275c73c26a", "name": "VoIP.ms", "type": "light"}]}]}, {"id": "376e354b-4daa-4d4e-a285-0d6bd3372ab0", "name": "XING", "tags": [], "issuers": ["XING"], "match_rules": [], "icons_collections": [{"id": "335c07ee-cc81-4c4d-9583-fbe4ce962901", "name": "XING", "icons": [{"id": "67a7deb8-f8fc-491f-9620-24e6cc7748d7", "name": "XING", "type": "light"}, {"id": "c029a951-8923-4059-a91e-735115511bb3", "name": "XING", "type": "dark"}]}]}, {"id": "37c35aa1-970c-4271-a4e1-5a0c49b66708", "name": "Porkbun", "tags": [], "issuers": ["Porkbun"], "match_rules": null, "icons_collections": [{"id": "1a9acd1f-6265-4ed9-8de6-bfcc356617b5", "name": "Porkbun", "icons": [{"id": "6019f790-bfe7-4c1e-897f-942d4689426d", "name": "Porkbun", "type": "light"}]}]}, {"id": "380c5643-1f0a-43a0-afd9-d764a67829bb", "name": "pair Domains", "tags": [], "issuers": [], "match_rules": [{"text": "pair Domains", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "pair Domains", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ac419c2b-78d2-4910-8e21-fbe8b8d5c187", "name": "pair Domains", "icons": [{"id": "487a2d8e-5bab-4b4f-b303-7dfe863d55da", "name": "pair Domains", "type": "light"}]}]}, {"id": "3842fba8-47c3-45bb-9700-932e86721063", "name": "Norton", "tags": [], "issuers": ["NortonLifeLock"], "match_rules": [], "icons_collections": [{"id": "a659e300-c8b3-4db3-8d11-2ddb1c46ceb8", "name": "Norton", "icons": [{"id": "879efb47-56d1-4378-840c-7de3bb45fd43", "name": "Norton", "type": "light"}]}]}, {"id": "386aa376-6657-47b9-a81f-65e33c2cc266", "name": "ClearScore", "tags": [], "issuers": [], "match_rules": [{"text": "ClearScore", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ClearScore", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2ae40c6d-f9d0-40c3-9b74-9f7897ff5349", "name": "ClearScore", "icons": [{"id": "0b025902-7f10-435e-9160-ca70d5b8e2e6", "name": "ClearScore", "type": "dark"}, {"id": "10f60fb7-fbb8-4255-809d-f80d38c71e5b", "name": "ClearScore", "type": "light"}]}]}, {"id": "38c1b9bc-9040-49ae-8551-0b0166b75708", "name": "Ko-fi", "tags": [], "issuers": [], "match_rules": [{"text": "Ko-fi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Ko-fi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "039d5de3-40fa-44db-8751-d18ea4647055", "name": "Ko-fi", "icons": [{"id": "219c36f7-6e00-49dd-bda0-459ad480ee8e", "name": "Ko-fi", "type": "light"}]}]}, {"id": "38c71d0c-a820-4284-aba9-05721900a2a2", "name": "Cyberreason", "tags": [], "issuers": [], "match_rules": [{"text": "Cyberreason", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cyberreason", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d772ee7f-8f5b-476f-a498-6d13b285c012", "name": "Cyberreason", "icons": [{"id": "8c00abf2-f957-4321-ab45-7be422bcaf9b", "name": "Cyberreason", "type": "dark"}, {"id": "e09fb5a0-825d-452c-9dbd-9dae84bbe431", "name": "Cyberreason", "type": "light"}]}]}, {"id": "3974a4fd-722f-4512-a636-310fdb59719a", "name": "Actionstep", "tags": [], "issuers": ["Actionstep+MFA", "Actionstep MFA"], "match_rules": null, "icons_collections": [{"id": "b69addb0-c23f-4bee-a210-fdb1dfdaba1e", "name": "Actionstep", "icons": [{"id": "1a8a523e-96ca-4dc9-b6ea-4b426f796a09", "name": "Actionstep", "type": "light"}]}]}, {"id": "39ab5009-a9f4-44e2-90e8-becfbecfdbba", "name": "Atera", "tags": [], "issuers": ["Atera"], "match_rules": null, "icons_collections": [{"id": "ce141608-0221-422f-8a07-33d6bca77f1f", "name": "Atera", "icons": [{"id": "01eb4f12-9fc3-48a2-8d49-ec0834c96f9b", "name": "Atera", "type": "light"}]}]}, {"id": "39d9501e-b910-4911-996f-a05972767ce9", "name": "Unraid", "tags": [], "issuers": ["Unraid"], "match_rules": null, "icons_collections": [{"id": "f391fceb-2ff9-4f12-984d-ee59e91e157c", "name": "Unraid", "icons": [{"id": "e2c77a51-4d08-4a13-91e8-bf4f0e484a4f", "name": "Unraid", "type": "light"}]}]}, {"id": "39e865b8-7b99-4ca3-b901-83c585920100", "name": "Arqbackup", "tags": [], "issuers": [], "match_rules": [{"text": "Arqbackup", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Arqbackup", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a866958e-d9d1-4dc7-a335-a96ea12997f1", "name": "Arqbackup", "icons": [{"id": "a647976c-f36e-4966-887c-82c9b4424171", "name": "Arqbackup", "type": "light"}]}]}, {"id": "39fbe7d1-12ab-40ce-9994-5c351ea21420", "name": "Voyager", "tags": [], "issuers": [], "match_rules": [{"text": "Voyager", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Voyager", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2c1ff9a8-bb21-4e12-ac45-cde148d7847f", "name": "Voyager", "icons": [{"id": "d88899c5-9c54-4ee0-a6fb-275293e6638e", "name": "Voyager", "type": "light"}]}]}, {"id": "3a1b611c-599a-4664-960d-e60a941c1971", "name": "PolySwarm", "tags": [], "issuers": ["PolySwarm"], "match_rules": null, "icons_collections": [{"id": "9ec3a35f-b09d-42fd-a1df-354accf630ac", "name": "PolySwarm", "icons": [{"id": "d2347ca8-b48b-4429-8567-01c05c12e71f", "name": "PolySwarm", "type": "dark"}, {"id": "e643ffb4-c2b5-4d74-9122-1b786be3e2df", "name": "PolySwarm", "type": "light"}]}]}, {"id": "3a26c02c-1c6e-49ba-b282-c640f6c05804", "name": "WEB.DE", "tags": [], "issuers": ["WEB.DE"], "match_rules": [], "icons_collections": [{"id": "3af6d11f-d879-4649-b183-20c5742f20dd", "name": "WEB.DE", "icons": [{"id": "e4e06197-b758-4032-b96e-e14ff90211bb", "name": "WEB.DE", "type": "light"}]}]}, {"id": "3a299053-0618-4490-b4e4-cfbf1f77ae2f", "name": "netcup", "tags": [], "issuers": [], "match_rules": [{"text": "netcup", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "netcup", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5636b7b1-26b8-441d-877c-97aa0b1b2b34", "name": "netcup", "icons": [{"id": "725a6ba8-2f4b-4f58-8a41-8a3aaa65772b", "name": "netcup", "type": "light"}]}]}, {"id": "3a38d56b-a576-4eb9-84c9-2652087547df", "name": "Philips Hue", "tags": [], "issuers": ["Philips Hue"], "match_rules": null, "icons_collections": [{"id": "1f762812-c7bc-4425-aafa-da4482812f1d", "name": "Philips Hue", "icons": [{"id": "1a072b4a-f30c-4a47-a965-e366d27f8757", "name": "Philips Hue", "type": "light"}]}]}, {"id": "3a535461-59ad-451d-91f2-14ec42b34e89", "name": "Wykop", "tags": [], "issuers": [], "match_rules": [{"text": "Wykop", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wykop", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "42ccc3a5-7f2b-4147-b2b3-91c6c875fea5", "name": "Wykop", "icons": [{"id": "fd50ad71-56d9-4664-af91-9d4ff39f33a4", "name": "Wykop", "type": "light"}]}]}, {"id": "3a641ca4-6f57-49a6-9ddc-434168915803", "name": "HitBTC", "tags": [], "issuers": [], "match_rules": [{"text": "HitBTC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HitBTC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7f9ec53c-61e8-4dcc-a8e5-d5df6e6139f3", "name": "HitBTC", "icons": [{"id": "110442fd-acac-4a0d-a2d8-a6b50cd920e7", "name": "HitBTC", "type": "light"}]}]}, {"id": "3a997c2d-cc2e-4e14-9be6-b764351896e9", "name": "Replicon", "tags": [], "issuers": [], "match_rules": [{"text": "Replicon", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Replicon", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "651012fa-1f43-45d3-b916-27959c7c09a9", "name": "Replicon", "icons": [{"id": "d240f1dc-a208-4e59-a7a5-e9a4d6113b62", "name": "Replicon", "type": "light"}]}]}, {"id": "3ac1c4d9-ee84-449c-ad7f-a42d7fab9aeb", "name": "RMIT University", "tags": [], "issuers": [], "match_rules": [{"text": "RMIT University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RMIT University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a053caa4-006a-482c-81b0-dcb2d99bac82", "name": "RMIT University", "icons": [{"id": "068316eb-c0d6-4e24-950c-917bcec6138a", "name": "RMIT University", "type": "light"}]}]}, {"id": "3af83d66-abcb-4996-87b3-ea3af6811980", "name": "Cal Poly Pomona", "tags": [], "issuers": [], "match_rules": [{"text": "Cal Poly Pomona", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cal Poly Pomona", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "200d1a5a-4d17-477f-8dce-f5ac5f07a774", "name": "Cal Poly Pomona", "icons": [{"id": "a5594e39-2818-42ea-aa86-a2ace3d47639", "name": "Cal Poly Pomona", "type": "light"}]}]}, {"id": "3b0c488c-bd30-4edf-9441-8a6f97791124", "name": "Proxmox", "tags": [], "issuers": ["Proxmox"], "match_rules": [{"text": "Proxmox", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "ef5373e1-d53a-44c2-8df8-fdb35bd76ccc", "name": "Proxmox", "icons": [{"id": "0ea4b4c1-5ebc-476d-b77b-e3f7ebf8d51b", "name": "Proxmox", "type": "dark"}, {"id": "96bc5655-68d6-430c-9d4c-ff26623b0488", "name": "Proxmox", "type": "light"}]}]}, {"id": "3b37043e-2b0a-45cf-9892-2fc264598fc8", "name": "Union Bank & Trust", "tags": ["ubt"], "issuers": [], "match_rules": [{"text": "Union Bank & Trust", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Union Bank & Trust", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "42d6669a-4fd1-4445-928f-e254072f5ad7", "name": "Union Bank & Trust", "icons": [{"id": "fad87b9b-3378-469b-b022-613ab9dc18cc", "name": "ubt", "type": "light"}]}]}, {"id": "3b394024-5225-410d-86c3-a503206526cc", "name": "Independent Reserve", "tags": [], "issuers": [], "match_rules": [{"text": "Independent Reserve", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Independent Reserve", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "91dc5e46-5bc1-4aa2-a342-24517e7bd941", "name": "Independent Reserve", "icons": [{"id": "a7fad3e4-a2fd-43be-9801-c9e5fccdb94c", "name": "Independent Reserve", "type": "dark"}, {"id": "f7a038e8-d095-4e4b-a07a-192a539db4ac", "name": "Independent Reserve", "type": "light"}]}]}, {"id": "3b69751d-d00b-45f2-b48b-391ce10bd1f0", "name": "Segment", "tags": [], "issuers": [], "match_rules": [{"text": "Segment", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Segment", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1c7f0cd9-23f6-4e4a-bebc-75a1ecfc3121", "name": "Segment", "icons": [{"id": "6c3580d2-1451-483e-9bcd-789201f4fc5b", "name": "Segment", "type": "light"}]}]}, {"id": "3b71ef51-faab-4a56-9cb8-11fbe41f2510", "name": "authentik", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "9c9ea2d0-eae8-421f-afd6-70585d7d959d", "name": "authentik", "icons": [{"id": "7e2d3767-8b66-4cd4-8826-411537b426a6", "name": "authentik", "type": "light"}]}]}, {"id": "3bdcc16a-88c6-43b1-a68f-839711b04378", "name": "AwardWallet", "tags": [], "issuers": [], "match_rules": [{"text": "AwardWallet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AwardWallet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6e0b0b5e-f43a-44c1-9569-6fe8c5d926d3", "name": "AwardWallet", "icons": [{"id": "bbcb7b9f-154d-40cc-ac10-5c7731f2623d", "name": "AwardWallet", "type": "light"}]}]}, {"id": "3bf2e877-d6ba-47b5-ba9d-eed2a288ec38", "name": "HiDrive (STRATO)", "tags": [], "issuers": [], "match_rules": [{"text": "HiDrive (STRATO)", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HiDrive (STRATO)", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "72541e1b-29b4-43e9-ac18-24e7bfb67bea", "name": "HiDrive (STRATO)", "icons": [{"id": "58ac0a26-dd81-4e0b-b502-119b07434eb9", "name": "HiDrive (STRATO)", "type": "light"}]}]}, {"id": "3bf3c372-753b-4a6a-b6ec-b92637fcf1dd", "name": "Grammarly", "tags": [], "issuers": ["Grammarly"], "match_rules": [], "icons_collections": [{"id": "4569f593-1e3b-4f41-9f13-c905d45f277f", "name": "Grammarly", "icons": [{"id": "893ff224-c32e-476d-9893-83a984e8490e", "name": "Grammarly", "type": "light"}]}]}, {"id": "3c1bf001-f071-4209-a36c-7b3bdf5a2021", "name": "Cloudinary", "tags": [], "issuers": [], "match_rules": [{"text": "Cloudinary", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cloudinary", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "be9fcb9f-459b-404d-a523-b74afbbb6952", "name": "Cloudinary", "icons": [{"id": "2f7e4156-3a0b-4b53-b534-43f279857449", "name": "Cloudinary", "type": "light"}]}]}, {"id": "3c657edd-7759-43c1-820c-6ae75eb20cba", "name": "Tweakers", "tags": [], "issuers": [], "match_rules": [{"text": "Tweakers", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tweakers", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d1a868a1-1b51-4834-8c80-817fcde0c581", "name": "Tweakers", "icons": [{"id": "79dd7717-0b3a-46e7-a1bc-a0859a9572ba", "name": "Tweakers", "type": "light"}]}]}, {"id": "3c6bc6c5-75a3-425e-84d1-df8c562d8869", "name": "Usabilla", "tags": [], "issuers": [], "match_rules": [{"text": "Usabilla", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Usabilla", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6aff8a26-1d30-4d78-8215-ece1f57015c3", "name": "Usabilla", "icons": [{"id": "ee3c863a-55fc-446f-ab61-cc332d48c12c", "name": "Usabilla", "type": "light"}]}]}, {"id": "3c9fb79f-a473-47eb-aa75-f5ef5b35829b", "name": "Ubisoft", "tags": [], "issuers": ["Ubisoft"], "match_rules": [], "icons_collections": [{"id": "eac7ef2f-0db9-4227-9d59-2745dc99adb5", "name": "Ubisoft", "icons": [{"id": "0cde6a7f-b705-470f-9414-f8fb9d2eb089", "name": "Ubisoft", "type": "dark"}, {"id": "d8b4b4d5-e571-4aac-94a0-2f657b1d3e7b", "name": "Ubisoft", "type": "light"}]}]}, {"id": "3ca4a205-70c1-4e62-abbc-aceec59fa614", "name": "ThreatX", "tags": [], "issuers": [], "match_rules": [{"text": "ThreatX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ThreatX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fd44856a-ea04-4cf0-a826-0240fc8b6e8f", "name": "ThreatX", "icons": [{"id": "616e2f16-d092-4260-a650-2504fda2c577", "name": "ThreatX", "type": "dark"}, {"id": "6c7bd680-71df-4218-8d34-261a63139ce9", "name": "ThreatX", "type": "light"}]}]}, {"id": "3d0938bb-3863-472c-b28c-967274018aa1", "name": "Liquid", "tags": [], "issuers": [], "match_rules": [{"text": "Liquid", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Liquid", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "176ce24f-f580-4b7e-8013-959c8b62df26", "name": "Liquid", "icons": [{"id": "12003614-c77e-433e-8bca-02488e84cfe9", "name": "Liquid", "type": "light"}]}]}, {"id": "3d2e931b-a5c1-4bf6-bec8-64d823a85680", "name": "Surfshark VPN", "tags": [], "issuers": [], "match_rules": [{"text": "Surfshark", "field": "label", "matcher": "equals", "ignore_case": true}], "icons_collections": [{"id": "25759a33-666d-44ea-8185-616ea36e9db4", "name": "Surfshark VPN", "icons": [{"id": "1fc4f981-a213-4a16-b82c-c8dbca6978df", "name": "Surfshark VPN", "type": "light"}]}]}, {"id": "3d516ea8-a8b7-4687-82f7-a3b8e9df68d1", "name": "Gitlab", "tags": [], "issuers": ["gitlab.com"], "match_rules": [], "icons_collections": [{"id": "28fc05d0-a329-4a0a-a0ec-066fd278577e", "name": "Gitlab", "icons": [{"id": "eaa60b33-7209-4220-90b6-eaec98aa3559", "name": "Gitlab", "type": "light"}]}]}, {"id": "3e03ce4d-97ff-4740-838a-3ada751d2c38", "name": "Constellix", "tags": [], "issuers": [], "match_rules": [{"text": "Constellix", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Constellix", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d78b0fa6-4f29-4227-ab83-280ac34df01e", "name": "Constellix", "icons": [{"id": "e160c6f1-cb7c-4fdb-9d51-0f9fc5210b25", "name": "Constellix", "type": "light"}]}]}, {"id": "3e0437a5-acaf-4465-b9f6-136b07da4470", "name": "AVS Forum", "tags": [], "issuers": [], "match_rules": [{"text": "AVS Forum", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AVS Forum", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "AVS(\\+|\\s|-|_)Forum", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "AVS(\\+|\\s|-|_)Forum", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "6e12f3aa-3796-4f70-a5a6-0ddb1c6b4bda", "name": "AVS Forum", "icons": [{"id": "6dd4f41e-f6cd-4c14-a2c8-38905936ae79", "name": "AVS Forum", "type": "light"}]}]}, {"id": "3e09caae-2c07-4281-8b7c-ea76c88d6c87", "name": "Mint", "tags": [], "issuers": [], "match_rules": [{"text": "Mint", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mint", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "59942db5-fa3a-4a64-9b24-b3fbe2ed92f1", "name": "Mint", "icons": [{"id": "5109d9ea-d4cd-4bf4-b23f-e9d17dd90b89", "name": "Mint", "type": "light"}]}]}, {"id": "3e25094f-08c0-4932-9dcd-633bf8ad137e", "name": "AlgoLightHouse", "tags": [], "issuers": ["AlgoLightHouse"], "match_rules": null, "icons_collections": [{"id": "3d835d08-84b1-48e7-9d9d-c09e7db84396", "name": "AlgoLightHouse", "icons": [{"id": "c7ee805c-1894-4359-992c-7ece78c968bd", "name": "AlgoLightHouse", "type": "light"}]}]}, {"id": "3ec08d85-d803-4b6a-a2f4-f5d24c9bba67", "name": "GitHub", "tags": [], "issuers": ["GitHub"], "match_rules": [], "icons_collections": [{"id": "fff32440-f5be-4b9c-b471-f37d421f10c3", "name": "GitHub", "icons": [{"id": "22e59211-f891-452c-907f-aa3a18f0df0d", "name": "GitHub", "type": "dark"}, {"id": "fe145f01-40c5-4d19-9315-056bee84d02b", "name": "GitHub", "type": "light"}]}]}, {"id": "3ed94a08-7de6-4137-89d4-b8c4805482d6", "name": "Webcentral", "tags": [], "issuers": [], "match_rules": [{"text": "Webcentral", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Webcentral", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6b614d5d-b4ca-41d9-8a20-2839f42ccafe", "name": "Webcentral", "icons": [{"id": "20a60c05-c43b-4146-a5a1-1f4444b4ee2e", "name": "Webcentral", "type": "light"}]}]}, {"id": "3ee94c0d-4c2c-4b59-a35e-9251bed8d7ce", "name": "VK", "tags": [], "issuers": ["VK"], "match_rules": [], "icons_collections": [{"id": "1e13dd25-50bd-4766-8b7f-937ae487b803", "name": "VK", "icons": [{"id": "3d5b6e1f-5caa-43bc-a486-6307ed7c0bce", "name": "VK", "type": "light"}]}]}, {"id": "3eea282c-11ee-4cdc-9f8c-b3262e3ba5d3", "name": "Simon Fraser University", "tags": ["sfu"], "issuers": [], "match_rules": [{"text": "Simon Fraser University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Simon Fraser University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cec464d3-1eee-4781-ba8f-128f7962ce36", "name": "Simon Fraser University", "icons": [{"id": "b35c8651-1d65-42f1-987e-8ac9f533b616", "name": "Simon Fraser University", "type": "light"}]}]}, {"id": "3eee1a70-692e-4105-8db8-3628a7b6a590", "name": "Todoist", "tags": [], "issuers": ["Todoist"], "match_rules": null, "icons_collections": [{"id": "d45ead47-367b-44c0-b258-69d73ff7443c", "name": "Todoist", "icons": [{"id": "7cbc84ab-a00b-46a5-97f5-a73e614c45be", "name": "Todoist", "type": "light"}]}]}, {"id": "3f2fa321-996e-403a-86cf-620895f27232", "name": "Saweria", "tags": [], "issuers": [], "match_rules": [{"text": "Saweria", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Saweria", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "83bcb421-c30d-44db-a623-83da237ecdc7", "name": "Saweria", "icons": [{"id": "72c29283-d95b-4796-80cc-5c0ed688c96b", "name": "Saweria", "type": "light"}]}]}, {"id": "3fb70080-e145-4691-ae07-2c7fb665a55e", "name": "POEditor", "tags": [], "issuers": [], "match_rules": [{"text": "POEditor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "POEditor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5c26e978-b591-41b0-be5a-d71d1d0fb529", "name": "POEditor", "icons": [{"id": "3742f085-8100-460b-9b08-480bf262340c", "name": "POEditor", "type": "light"}]}]}, {"id": "3fd6917b-0eb2-4306-b4b1-000256f61977", "name": "Onelogin", "tags": [], "issuers": ["Onelogin"], "match_rules": [], "icons_collections": [{"id": "03233892-479f-4f72-beaa-653b53c3ec03", "name": "Onelogin", "icons": [{"id": "79932352-a259-4ded-87f6-559406e824a3", "name": "Onelogin", "type": "light"}, {"id": "fe4bf606-fdd5-4990-bcda-e66f2ab29f71", "name": "Onelogin", "type": "dark"}]}]}, {"id": "3ff93c0f-1021-4bec-b9ce-16daed01097f", "name": "Internet.bs", "tags": [], "issuers": [], "match_rules": [{"text": "Internet.bs", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Internet.bs", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1bef4744-be54-4818-9f13-7a8c2b8b27f5", "name": "Internet.bs", "icons": [{"id": "02a7786c-27ab-4d31-bb81-e57f310d536b", "name": "internet.bs", "type": "dark"}, {"id": "e6f79b8b-387e-469f-9165-dc77c66419bb", "name": "Internet.bs", "type": "light"}]}]}, {"id": "400f455c-9803-4762-b738-a3a8d5d4aae6", "name": "Automater", "tags": [], "issuers": [], "match_rules": [{"text": "Automater", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Automater", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7b12a076-9692-4602-a1f9-caf422bd8d17", "name": "Automater", "icons": [{"id": "1fccdc30-5bc3-4f95-ab05-f18c8c20e4ce", "name": "Automater", "type": "light"}]}]}, {"id": "4013e738-f87e-46ef-b5b1-16b617dcbbef", "name": "Exante", "tags": [], "issuers": [], "match_rules": [{"text": "Exante", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Exante", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eb520f59-1338-4cf5-a4d1-d00d1bace358", "name": "Exante", "icons": [{"id": "cb386765-41b5-411c-a4f7-1a8dac1ddaeb", "name": "Exante", "type": "light"}]}]}, {"id": "40a839ea-9c44-4959-9e31-de18b01001a5", "name": "SmartSimple", "tags": [], "issuers": [], "match_rules": [{"text": "SmartSimple", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SmartSimple", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9139058a-0705-45f6-8d2d-5063523d8574", "name": "SmartSimple", "icons": [{"id": "b00c0afb-e79f-4c17-a0ba-0fcd6382cd03", "name": "SmartSimple", "type": "light"}]}]}, {"id": "40ff4402-35bb-44a3-a17f-5c947c6d6f61", "name": "IronVest", "tags": [], "issuers": [], "match_rules": [{"text": "IronVest", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IronVest", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7624b4a3-3d4e-4c5d-aa04-e203c6570258", "name": "IronVest", "icons": [{"id": "3ba251dc-ef29-4442-8a91-338e215eed96", "name": "IronVest", "type": "light"}, {"id": "6036f308-ef9f-4a40-907c-f6b5ab622cb3", "name": "IronVest", "type": "dark"}]}]}, {"id": "413a4cc5-ba05-4004-bc54-06df1a671926", "name": "Matomo", "tags": ["analytics"], "issuers": [], "match_rules": [{"text": "Matomo Analytics", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "c5d27bfb-74ac-4459-9c73-2e58a106ade3", "name": "Matomo", "icons": [{"id": "7a1092db-7ffc-481c-89f3-09a911058acb", "name": "Matomo", "type": "light"}]}]}, {"id": "41c87975-a000-4e3a-81cf-ac9e4804d015", "name": "Galaxus", "tags": [], "issuers": [], "match_rules": [{"text": "Galaxus", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Galaxus", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "41f92f5a-9934-4d4c-aa09-2b7fd4927a79", "name": "Galaxus", "icons": [{"id": "619afbd6-a6ed-4939-9de0-3c2f5ffe0d95", "name": "Galaxus", "type": "light"}, {"id": "c1b0872b-9b28-41e8-a457-b9a14f67d979", "name": "Galaxus", "type": "dark"}]}]}, {"id": "41ce1d02-78b1-4bb6-8b80-c1b76b694f19", "name": "Freewallet", "tags": [], "issuers": [], "match_rules": [{"text": "Freewallet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Freewallet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "654f8e2e-6c24-4f05-9e93-b7c1df97815f", "name": "Freewallet", "icons": [{"id": "0b0b0c2b-4e56-4010-b2de-63b755163a2d", "name": "Freewallet", "type": "light"}]}]}, {"id": "427b8a65-de62-4ff4-8d75-9895148d4617", "name": "Logi ID", "tags": ["Logitech"], "issuers": ["Logi ID"], "match_rules": null, "icons_collections": [{"id": "208506a6-f088-4349-83de-aa0b61d3f995", "name": "Logi ID", "icons": [{"id": "a1c9c81b-88c6-4614-b889-ec6cd757db40", "name": "Logi ID", "type": "light"}]}]}, {"id": "42822f00-e91f-400c-9693-24a9faa52a58", "name": "Stessa", "tags": [], "issuers": [], "match_rules": [{"text": "Stessa", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Stessa", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6bace99a-bfb9-4236-bdf9-2429249b206e", "name": "Stessa", "icons": [{"id": "a2e132f2-7ca3-42e1-85b6-42ff8a825653", "name": "Stessa", "type": "light"}]}]}, {"id": "42bdf635-f73f-467f-ab80-a8ff816d1847", "name": "Substack", "tags": [], "issuers": [], "match_rules": [{"text": "Substack", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Substack", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "76ef4741-f056-4b68-8e1e-2b9ff467cbbf", "name": "Substack", "icons": [{"id": "7c3ec23c-f18a-491d-9323-217c8d193124", "name": "Substack", "type": "light"}]}]}, {"id": "42f378b1-6821-42ba-8b6e-6a1cf60bb958", "name": "Acronis", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "ca81ae1f-20f6-45d2-bbef-24ba47adab79", "name": "Acronis", "icons": [{"id": "1aa2236d-3780-487a-aeec-ed9ce2282e55", "name": "Acronis", "type": "dark"}, {"id": "6eec24da-2051-4555-b7ab-23aac0247a64", "name": "Acronis", "type": "light"}]}]}, {"id": "433319c3-646f-498c-924d-28fd952c0904", "name": "Republic", "tags": [], "issuers": [], "match_rules": [{"text": "Republic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Republic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6fced2f9-550e-4e85-b98d-a26dd1d2768d", "name": "Republic", "icons": [{"id": "f14b5ba1-a463-4577-8880-3b622c1252c0", "name": "Republic", "type": "light"}]}]}, {"id": "43dc2d2c-b446-498e-9daa-7b1bd398eb23", "name": "Discogs", "tags": [], "issuers": [], "match_rules": [{"text": "Discogs", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Discogs", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bdb9c5a2-7f48-4cb9-851f-b4b970ce48e7", "name": "Discogs", "icons": [{"id": "09cb9c31-5357-4f2a-b9e0-dc275e7ec2dd", "name": "Discogs", "type": "dark"}, {"id": "bb331d71-c8e9-4bbc-84be-6977a725959a", "name": "Discogs", "type": "light"}]}]}, {"id": "43fcc22a-8688-4ae7-9155-2bf49d532439", "name": "Newgrounds", "tags": [], "issuers": [], "match_rules": [{"text": "Newgrounds", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Newgrounds", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77872e40-dcdb-40fc-89b0-c2fd645ca495", "name": "Newgrounds", "icons": [{"id": "a550d4d4-9ab2-4556-9c28-28ffa898ea3b", "name": "Newgrounds", "type": "light"}]}]}, {"id": "442122c4-836c-447a-a781-f4ab137af75c", "name": "hellostake.com", "tags": ["stake"], "issuers": ["Stake"], "match_rules": null, "icons_collections": [{"id": "04e3c048-1f30-45f6-9e83-2a44602a1d0a", "name": "hellostake.com", "icons": [{"id": "5751359a-28ea-4a1b-985d-e093a76a50e5", "name": "Hellostake", "type": "light"}, {"id": "c2edb5bf-c3ea-4d8f-a287-5fa93435765e", "name": "Hellostake", "type": "dark"}]}]}, {"id": "44236c0b-5cc4-4aac-ab01-30cab1ec276d", "name": "Planning Center", "tags": [], "issuers": [], "match_rules": [{"text": "Planning Center", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Planning Center", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7380ff3e-a922-4acb-a989-c0b22e43d500", "name": "Planning Center", "icons": [{"id": "a0b3b71b-70bc-480e-9569-ec57d8a64bb4", "name": "Planning Center", "type": "light"}]}]}, {"id": "445140b7-d5c0-49d6-9c30-cb24e580058b", "name": "Icedrive", "tags": [], "issuers": ["Icedrive"], "match_rules": null, "icons_collections": [{"id": "7fffe036-01b2-4c2d-b739-bcdbb76395c7", "name": "Icedrive", "icons": [{"id": "e425c492-db9c-4177-87d0-375d666649f3", "name": "Icedrive", "type": "light"}]}]}, {"id": "44525ac7-0e28-4cd7-896f-7d9de3cdc2a7", "name": "RealMe", "tags": [], "issuers": [], "match_rules": [{"text": "RealMe", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RealMe", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2cc80ac1-879e-43db-90f9-12a3a97b5151", "name": "RealMe", "icons": [{"id": "13f8deb3-ca90-4b94-950c-1b5dc0b2d53a", "name": "RealMe", "type": "light"}, {"id": "3f2f34f4-afea-4bae-9862-0bc179115d91", "name": "RealMe", "type": "dark"}]}]}, {"id": "44e15d6c-665f-4c6a-a1a4-b5a34b292a85", "name": "Too Lost", "tags": [], "issuers": [], "match_rules": [{"text": "toolost.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "d8af5afe-0f77-4675-81ed-ea3c27ecb14b", "name": "Too Lost", "icons": [{"id": "375d8fc7-f1b9-44bc-a252-1633386432ba", "name": "Too Lost", "type": "light"}]}]}, {"id": "450cab07-490e-4645-a336-126a798314ae", "name": "Kraken", "tags": [], "issuers": ["kraken.com"], "match_rules": [], "icons_collections": [{"id": "96d6723e-b5d2-4b90-9ce3-bccb3f919642", "name": "Kraken", "icons": [{"id": "10a4ddaf-b0f9-4a30-8e60-3b9dae01de11", "name": "Kraken", "type": "dark"}, {"id": "7218bb8e-f2a8-49dc-a1fa-cccf92294f78", "name": "Kraken", "type": "light"}]}]}, {"id": "4540cdf9-ce81-48bc-b57e-9eb508d69e8d", "name": "Plurk", "tags": [], "issuers": [], "match_rules": [{"text": "Plurk", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Plurk", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "68824e4c-a24a-4507-9d48-9b22ec882e96", "name": "Plurk", "icons": [{"id": "68fc76ea-ac05-4aea-9cf5-e8a5dbe31296", "name": "Plurk", "type": "light"}]}]}, {"id": "454c421a-faa8-4c01-bece-36f876d36067", "name": "Panther", "tags": [], "issuers": [], "match_rules": [{"text": "Panther", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Panther", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a428f16f-9bd9-4ec4-b303-201b96f63b5d", "name": "Panther", "icons": [{"id": "45dd0304-9b84-47a1-aba6-103fba452800", "name": "Panther", "type": "light"}]}]}, {"id": "454f77f3-c3b6-421b-8bb2-f2f0d627139f", "name": "Cash App", "tags": [], "issuers": [], "match_rules": [{"text": "Cash App", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "CashApp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f2bc2c98-a5bf-4be8-948c-28693d1600ea", "name": "Cash App", "icons": [{"id": "8fbffd24-7fb2-4a2f-b15a-a026361a16ea", "name": "Cash App", "type": "light"}]}]}, {"id": "45741eb0-3388-4d54-8816-20a4bba036eb", "name": "Zoom", "tags": [], "issuers": ["Zoom"], "match_rules": [], "icons_collections": [{"id": "8e3326a2-13c9-49bb-b28d-c4465b0ce62d", "name": "Zoom", "icons": [{"id": "e9f019ab-034f-4e2c-904b-f649961fc640", "name": "Zoom", "type": "light"}]}]}, {"id": "45947c40-6a26-4ce1-b820-4dcbb65ae9cd", "name": "Piwik PRO", "tags": [], "issuers": [], "match_rules": [{"text": "Piwik PRO", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Piwik PRO", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fe503092-f163-4640-ae33-ec10f8172c3f", "name": "Piwik PRO", "icons": [{"id": "12efcaa9-5099-4045-8311-ae26c7853bd6", "name": "Piwik PRO", "type": "dark"}, {"id": "aa92be93-5acd-4795-9fc1-fe9869c72777", "name": "Piwik PRO", "type": "light"}]}]}, {"id": "45a393e8-7a18-4734-9689-3d9a55acd8af", "name": "Gaijin Entertainment", "tags": [], "issuers": [], "match_rules": [{"text": "Gaijin Entertainment", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Gaijin Entertainment", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9f0cbeba-a09d-42d1-b9d2-79881cc95e45", "name": "Gaijin Entertainment", "icons": [{"id": "6c1febf2-2650-4d61-899b-e70c497096a6", "name": "Gaijin Entertainment", "type": "dark"}, {"id": "9e2a6ecc-43b9-4a72-b746-9a07412b77df", "name": "Gaijin Entertainment", "type": "light"}]}]}, {"id": "45c3b05a-f0d2-462b-b910-c3dc6e3db303", "name": "Rebel.com", "tags": [], "issuers": [], "match_rules": [{"text": "Rebel.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rebel.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3dcc63ad-04a8-4259-8641-e96082bce459", "name": "Rebel.com", "icons": [{"id": "097616eb-ba0a-4539-a42e-d07b40ce97d1", "name": "Rebel.com", "type": "light"}]}]}, {"id": "466e78fa-b2ba-4142-a757-78b040f54759", "name": "Audiense", "tags": [], "issuers": [], "match_rules": [{"text": "Audiense", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Audiense", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8d9f31da-549d-44d6-83bb-2d2fb6446c47", "name": "Audiense", "icons": [{"id": "d64c8190-c23a-4588-8700-85b702ecd2c9", "name": "Audiense", "type": "light"}, {"id": "d8a85ad0-84a5-484c-8377-f72b8fe9d05d", "name": "Audiense", "type": "dark"}]}]}, {"id": "469c0889-1239-493d-91cf-fd4eb360d27a", "name": "Line 6", "tags": [], "issuers": [], "match_rules": [{"text": "Line 6", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Line 6", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "82b80c69-8e1d-4509-8f40-501754838a00", "name": "Line 6", "icons": [{"id": "b7b1fd7f-bff1-48de-9cf3-e48ea0f64e77", "name": "Line 6", "type": "light"}]}]}, {"id": "46d677ea-9678-4d03-a737-d53750c97f91", "name": "Ubuntu", "tags": [], "issuers": [], "match_rules": [{"text": "UbuntuSSO", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dbf20573-1304-4d12-be11-13c590ff1fc1", "name": "Ubuntu", "icons": [{"id": "11ed2921-5ba3-40bb-97bd-0e38899b8f52", "name": "Ubuntu", "type": "light"}]}]}, {"id": "46f76ad5-2539-45a8-a765-0648251c4d8f", "name": "MacStadium", "tags": [], "issuers": [], "match_rules": [{"text": "MacStadium", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "MacStadium", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f31a67f1-59f7-4f7b-859a-671101df8103", "name": "MacStadium", "icons": [{"id": "0955ae60-66df-4b3d-bc1f-1d3a27ef920d", "name": "MacStadium", "type": "dark"}, {"id": "1dfc4a8a-7050-40c2-8751-141c9a2ba7ea", "name": "MacStadium", "type": "light"}]}]}, {"id": "4711736b-490b-4ebd-b793-f16a3ad6fbda", "name": "Adyen", "tags": [], "issuers": [], "match_rules": [{"text": "Adyen", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Adyen", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85c74031-9bc7-40c2-98f1-a7f0e5242af6", "name": "Adyen", "icons": [{"id": "4d53cded-bb18-45d8-9fa6-5b70f8eb7a55", "name": "Adyen", "type": "light"}]}]}, {"id": "4729495c-003a-40c2-a879-16dc1a770137", "name": "Coinzilla", "tags": [], "issuers": [], "match_rules": [{"text": "Coinzilla", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinzilla", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f5cbf46b-7412-4cbb-87c3-7098d3dae6c2", "name": "Coinzilla", "icons": [{"id": "32349a09-65c2-4efb-8319-4eb1642cedb6", "name": "Coinzilla", "type": "light"}]}]}, {"id": "473b0856-b105-4f77-b7ef-f5bf4529837c", "name": "NiceHash Withdraw", "tags": [], "issuers": ["NiceHash - withdraw"], "match_rules": [], "icons_collections": [{"id": "c8019718-56b2-406f-bf21-2addda6b21fd", "name": "NiceHash", "icons": [{"id": "cb0edba6-9027-49cc-b99d-1b31041e5073", "name": "NiceHash Buying", "type": "light"}]}]}, {"id": "47a0bc03-4e73-411f-b8a9-58d6da692b31", "name": "TaxHawk", "tags": [], "issuers": [], "match_rules": [{"text": "TaxHawk", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TaxHawk", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9ef96f7a-1583-4bc3-be44-23f28232a291", "name": "TaxHawk", "icons": [{"id": "1d6c6e02-a2f9-4fb8-bd5d-fd501f4c650d", "name": "TaxHawk", "type": "dark"}, {"id": "cf938f40-b4be-41f1-aa71-1dcf92b7ae66", "name": "TaxHawk", "type": "light"}]}]}, {"id": "47d060c2-2ce2-444a-95d1-4dbed7d0daff", "name": "RU-CENTER", "tags": [], "issuers": [], "match_rules": [{"text": "RU-CENTER", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RU-CENTER", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3faf2674-15dc-4035-8113-f60aa7164c9d", "name": "RU-CENTER", "icons": [{"id": "419a4c45-ce49-43f0-bffc-23dc67863088", "name": "RU-CENTER", "type": "light"}]}]}, {"id": "47f41598-2809-4bfe-b3e2-03cd0d5f754a", "name": "OneDrive", "tags": ["Microsoft", "ms"], "issuers": [], "match_rules": [{"text": "OneDrive", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OneDrive", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c505749d-8a09-4c96-88b0-996baf250924", "name": "OneDrive", "icons": [{"id": "20805ba0-e1f3-4b89-8a36-15397b165b22", "name": "OneDrive", "type": "light"}]}]}, {"id": "481437e0-6b0c-4289-98ea-ed30ac4d5a0f", "name": "Mathworks", "tags": [], "issuers": ["Mathworks"], "match_rules": null, "icons_collections": [{"id": "69123308-c433-4acb-a876-d5045d25cc83", "name": "Mathworks", "icons": [{"id": "2665d492-c2ea-44dd-8e3b-708f16c89e6f", "name": "Mathworks", "type": "light"}]}]}, {"id": "48223642-089d-4e35-97da-4fbc4ba81c35", "name": "PyPI", "tags": [], "issuers": ["PyPI"], "match_rules": [], "icons_collections": [{"id": "eccafcdf-9e15-47d8-84c9-7da00d236135", "name": "PyPI", "icons": [{"id": "e5c1ce9d-61db-4cdc-9f52-9b297a22d010", "name": "PyPI", "type": "light"}]}]}, {"id": "486fbb7b-ff24-46df-9365-a2332edab0b4", "name": "Elastic Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "Elastic Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Elastic Cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9eac4de4-8d10-4f4e-8795-2571f828fc0b", "name": "Elastic Cloud", "icons": [{"id": "9fbb3a34-a984-45e4-b316-5ec7b751b006", "name": "Elastic Cloud", "type": "light"}]}]}, {"id": "48bf8471-b319-45fd-a1c7-f9f6ce17f6b9", "name": "Twitter (now X)", "tags": ["x", "twitter"], "issuers": [], "match_rules": [], "icons_collections": [{"id": "8f31632c-93a6-4cb6-ad14-d26ea6d96c95", "name": "Twitter (now X)", "icons": [{"id": "bf7562e9-19c3-4df7-87e7-8a9696d9dda6", "name": "Twitter", "type": "light"}]}]}, {"id": "48bf9f6a-f64c-40f5-9429-d41325d2304f", "name": "IT Glue", "tags": [], "issuers": [], "match_rules": [{"text": "IT Glue", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IT Glue", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2874a11c-beb5-452e-9b4f-156876168e87", "name": "IT Glue", "icons": [{"id": "0b221003-67ab-4eb5-982a-48a989d9b6a4", "name": "IT Glue", "type": "dark"}, {"id": "bc3f24ca-de8d-4daa-b799-f10eda5eff20", "name": "IT Glue", "type": "light"}]}]}, {"id": "48e8f3ce-2efd-4e4b-82fd-3d638b01f600", "name": "Kuna", "tags": [], "issuers": [], "match_rules": [{"text": "Kuna", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Kuna", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0b00b2f7-00a1-4fbd-9335-ce625dd6403f", "name": "Kuna", "icons": [{"id": "ced16260-4b19-40df-a8eb-ca7851765617", "name": "Kuna", "type": "light"}]}]}, {"id": "48fec849-1d85-4fc3-a956-140d07b00406", "name": "Migros", "tags": [], "issuers": [], "match_rules": [{"text": "Migros", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Migros", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c8f93bdc-9fb4-4ca7-a8da-0c66e07f2e25", "name": "Migros", "icons": [{"id": "5a1689cb-b7ae-4b9a-a6c5-d1e664708420", "name": "Migros", "type": "light"}]}]}, {"id": "490203bb-8a1b-48f6-8150-1667071489bf", "name": "Hostek", "tags": [], "issuers": [], "match_rules": [{"text": "Hostek", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hostek", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db5959bc-e851-467f-8131-dd5f61ebe31a", "name": "Hostek", "icons": [{"id": "188bd9e8-6ccf-49ba-9009-1f002e72f470", "name": "Hostek", "type": "light"}]}]}, {"id": "4925503b-cabb-4367-bbf7-152e866d28e2", "name": "Laravel Vapor", "tags": [], "issuers": [], "match_rules": [{"text": "Laravel Vapor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Laravel Vapor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eecf3530-b758-4680-a8d4-d4a857c472b5", "name": "Laravel Vapor", "icons": [{"id": "0d156eae-f9b0-4b2e-b43b-7e98ac5cffcc", "name": "Laravel Vapor", "type": "light"}]}]}, {"id": "49489e88-b233-4a79-8069-e41b55036f29", "name": "Travala", "tags": [], "issuers": [], "match_rules": [{"text": "Travala", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Travala", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db974d03-37c0-4bb0-a3e1-c662fc8fba3a", "name": "Travala", "icons": [{"id": "a7a835aa-f965-44c1-b3b2-0d181c8dca0c", "name": "Travala", "type": "light"}]}]}, {"id": "494fa111-ccd8-4eef-8d4f-47b490ef363c", "name": "Okta", "tags": [], "issuers": [], "match_rules": [{"text": "Okta", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Okta", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f67e6179-6184-4ddf-959b-a2fe39432bcc", "name": "Okta", "icons": [{"id": "197d9277-61f2-4110-8438-9cfee3a59d55", "name": "Okta", "type": "dark"}, {"id": "c3fb98ed-7876-40cd-ac65-3b081359649d", "name": "Okta", "type": "light"}]}]}, {"id": "49a043d8-9ec6-4866-b338-e0d73b26ecd4", "name": "Splashtop", "tags": [], "issuers": [], "match_rules": [{"text": "Splashtop", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Splashtop", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b59dd6f5-9532-4c84-b303-01e2941f9970", "name": "Splashtop", "icons": [{"id": "e83b6998-869b-4295-83ce-b1d12fe993f0", "name": "Splashtop", "type": "light"}]}]}, {"id": "49b24dc4-2520-4bac-a7d7-f2095ed6c815", "name": "FanDuel", "tags": [], "issuers": [], "match_rules": [{"text": "FanDuel", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FanDuel", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ba1c5e3f-7f33-4417-9156-2e581d63dd68", "name": "FanDuel", "icons": [{"id": "f3fce4ca-b524-494f-a607-22898bacb8ab", "name": "FanDuel", "type": "light"}]}]}, {"id": "49b75004-2ee0-46de-934e-f62e9271bd02", "name": "Synology", "tags": [], "issuers": ["Synology DSM", "Synology Account"], "match_rules": [], "icons_collections": [{"id": "1287cdab-814b-469f-a718-8c7775643099", "name": "Synology", "icons": [{"id": "c244efdd-f79f-434f-b17e-40c3b1b12258", "name": "Synology", "type": "dark"}, {"id": "f37c6a33-bb1e-45bf-9e68-5cb7c99fc90c", "name": "Synology", "type": "light"}]}]}, {"id": "49d3aed6-6ef9-4e9b-a9db-95e767145274", "name": "Honeybadger", "tags": [], "issuers": [], "match_rules": [{"text": "Honeybadger", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Honeybadger", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f27d50a0-5b21-40ea-8b59-a1ca1daae30f", "name": "Honeybadger", "icons": [{"id": "d43ea869-9e07-4d34-8c47-060041907e5f", "name": "Honeybadger", "type": "light"}]}]}, {"id": "4a1f455e-cef7-443f-b1c0-3c50527cc068", "name": "SpectroCoin", "tags": [], "issuers": [], "match_rules": [{"text": "SpectroCoin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SpectroCoin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9e47d2e-344a-4f63-a2ca-fc93fca70d59", "name": "SpectroCoin", "icons": [{"id": "4c6e005c-31e3-484d-bbb4-0a71d9cb8090", "name": "SpectroCoin", "type": "dark"}, {"id": "e1b4a15e-06b6-4f88-9ee5-892b0af9d57b", "name": "SpectroCoin", "type": "light"}]}]}, {"id": "4a2b1fb8-6de0-469b-a751-dc44ea1dfb20", "name": "Exmo", "tags": [], "issuers": [], "match_rules": [{"text": "Exmo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Exmo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "24fb2716-711e-485d-8857-cc3a882c95e1", "name": "Exmo", "icons": [{"id": "4f9bdf4b-97a5-46b1-b8af-834fc84dc7c4", "name": "Exmo", "type": "light"}]}]}, {"id": "4a397626-7137-4aa7-85ba-79515b8ed0d3", "name": "Particle", "tags": [], "issuers": [], "match_rules": [{"text": "Particle", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Particle", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a7fba7af-35d1-486c-b664-c38211c10e53", "name": "Particle", "icons": [{"id": "dea31e57-8523-4eb2-b79d-043094a10885", "name": "Particle", "type": "light"}]}]}, {"id": "4a3f552c-99fb-42c8-b1bf-57628b2fdb57", "name": "Sipgate", "tags": [], "issuers": ["sipgate"], "match_rules": null, "icons_collections": [{"id": "0a1bcfe8-c98d-48ef-9450-731e34343ee5", "name": "Sipgate", "icons": [{"id": "99ab33d9-c9df-446a-8903-86c2ecb76d74", "name": "Sipgate", "type": "light"}, {"id": "f2cbe22f-daf0-4bf9-a4a0-ef0e1f0ccb83", "name": "Sipgate", "type": "dark"}]}]}, {"id": "4a476833-3773-43d3-94a6-4556e0a776ac", "name": "Vysok\u00e1 \u0161kola ekonomick\u00e1 v Praze", "tags": [], "issuers": [], "match_rules": [{"text": "Vysok\u00e1 \u0161kola ekonomick\u00e1 v Praze", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Vysok\u00e1 \u0161kola ekonomick\u00e1 v Praze", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "248a84e0-5b72-4b81-bb4e-32d4698eb4ea", "name": "Vysok\u00e1 \u0161kola ekonomick\u00e1 v Praze", "icons": [{"id": "20d07cd7-e4c9-4da4-97ae-0e096eb34797", "name": "Vysok\u00e1 \u0161kola ekonomick\u00e1 v Praze", "type": "light"}]}]}, {"id": "4ab1a935-47b2-4655-a807-6b925de0e77e", "name": "Mint Mobile", "tags": ["Ryan", "Reynolds"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "bca2b91d-a005-40e5-803c-b38012995f6c", "name": "Mint Mobile", "icons": [{"id": "724744ef-7542-43e4-a3fd-332e4298b713", "name": "Mint Mobile", "type": "light"}]}]}, {"id": "4ad7ce16-c64d-4f18-b009-30a270dc782a", "name": "OVH", "tags": [], "issuers": [], "match_rules": [{"text": "Ovh", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "df17680c-b7e9-461b-820d-c62c2c8073df", "name": "OVH", "icons": [{"id": "d1d2f3a7-3270-4a0a-ae9d-fad4c36ca5a3", "name": "OVH", "type": "light"}, {"id": "ff7fa1fc-d2ca-46f0-bad5-08c480fec60d", "name": "OVH", "type": "dark"}]}]}, {"id": "4ae6bfef-0003-446c-9fc8-e0a03dd84163", "name": "WazirX", "tags": [], "issuers": ["WazirX"], "match_rules": [], "icons_collections": [{"id": "fd806401-613d-44d2-b170-79b9dee2c024", "name": "WazirX", "icons": [{"id": "46e30c7d-f76c-4cc9-9a80-e54a87e81522", "name": "WazirX", "type": "dark"}, {"id": "5274aab4-fa6c-41b5-bc1f-31f422810b80", "name": "WazirX", "type": "light"}]}]}, {"id": "4b418e68-2fa3-4818-8609-66e1e403568b", "name": "Assembla", "tags": [], "issuers": [], "match_rules": [{"text": "Assembla", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Assembla", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "16bc63b0-96b8-44d2-a502-e96c8e81329b", "name": "Assembla", "icons": [{"id": "d5a92ba9-3ceb-4fa2-b929-3c35e5a7638a", "name": "Assembla", "type": "dark"}, {"id": "ddb1c8b2-fb68-489d-b66a-ce3a30aa096b", "name": "Assembla", "type": "light"}]}]}, {"id": "4b45316d-aff6-4653-b089-bcbf553d9649", "name": "ReelCrafter", "tags": [], "issuers": ["ReelCrafter"], "match_rules": null, "icons_collections": [{"id": "a5c7a549-cbdb-43df-bbfd-95b3867aaf2c", "name": "ReelCrafter", "icons": [{"id": "0f020b79-3940-4acd-a4b0-dfd382ffefbb", "name": "ReelCrafter", "type": "dark"}, {"id": "1b02edd8-cd2e-4dd8-8b57-c8736c2e62d1", "name": "ReelCrafter", "type": "light"}]}]}, {"id": "4bcfde28-d843-4592-bb3e-251bb8c4ae08", "name": "Netcore Cloud Email API", "tags": [], "issuers": [], "match_rules": [{"text": "Netcore Cloud Email API", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Netcore Cloud Email API", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b7c7550a-f6d7-4204-929c-6006ad8207d9", "name": "Netcore Cloud Email API", "icons": [{"id": "bff3388f-f6e3-4b8f-ba59-78d4da9cff5d", "name": "Netcore Cloud Email API", "type": "light"}]}]}, {"id": "4bf34a65-2279-4da0-980d-0d1bb5a383b2", "name": "Airship", "tags": [], "issuers": [], "match_rules": [{"text": "Airship", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Airship", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d7b81ed8-7b51-40bc-bb4e-4b465e6ebb73", "name": "Airship", "icons": [{"id": "43766925-98f8-45c8-a617-efdfb7490d50", "name": "Airship", "type": "light"}]}]}, {"id": "4c1faa51-fefb-4ab5-9201-c54b794d32ba", "name": "Zendesk", "tags": [], "issuers": ["Zendesk"], "match_rules": [], "icons_collections": [{"id": "96f65174-f24d-4a85-a89e-89fcf4cc7ee3", "name": "Zendesk", "icons": [{"id": "4253fe5f-7a7e-4ec0-bb7a-5c8d56a50b68", "name": "Zendesk", "type": "dark"}, {"id": "abb2529a-53a3-4db1-a394-a6e4d58c4379", "name": "Zendesk", "type": "light"}]}]}, {"id": "4c30fd57-21b4-4d16-88f8-97738da0339d", "name": "AppSignal", "tags": [], "issuers": [], "match_rules": [{"text": "AppSignal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AppSignal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "42135c3a-a24e-48f9-9bbd-1f1428ec2bc8", "name": "AppSignal", "icons": [{"id": "52a80bfb-60b0-4cb2-ada2-fd7a57728807", "name": "AppSignal", "type": "light"}, {"id": "b0a8bab6-2f0b-443e-ab4f-a1d20e082d09", "name": "AppSignal", "type": "dark"}]}]}, {"id": "4c9652f3-131c-4c3d-82fb-ac491d8bc843", "name": "Greenhost", "tags": [], "issuers": [], "match_rules": [{"text": "Greenhost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Greenhost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8510864a-b571-4414-9248-f76bcede8c0c", "name": "Greenhost", "icons": [{"id": "11d4eaf4-8808-4b6c-9a37-d04419279dda", "name": "Greenhost", "type": "light"}]}]}, {"id": "4cb1849d-650c-48ff-bd99-420859f3d1c8", "name": "EA", "tags": ["electronic", "arts", "electronicarts"], "issuers": ["Electronic Arts"], "match_rules": [], "icons_collections": [{"id": "0b032d00-41c4-4821-90a9-b18b8c27074a", "name": "EA", "icons": [{"id": "2e4b30f3-1aab-4252-96b6-9fcb943059bc", "name": "EA", "type": "light"}]}]}, {"id": "4cfadd11-c568-4c3a-b9e1-41903c45fc92", "name": "Zerodha Kite", "tags": [], "issuers": [], "match_rules": [{"text": "Zerodha Kite", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Zerodha Kite", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9b6bd9e2-8ea7-4931-b662-6b3c0eb1970f", "name": "Zerodha Kite", "icons": [{"id": "10169b31-cf3e-4388-9638-e6567bf79e82", "name": "Zerodha Kite", "type": "light"}]}]}, {"id": "4d04199d-70d2-41ee-bcd3-6196a01aaebc", "name": "Remitano", "tags": [], "issuers": [], "match_rules": [{"text": "Remitano", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Remitano", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b082aa72-3b6d-461f-966c-02fc2fd3d1bd", "name": "Remitano", "icons": [{"id": "bb14c1f0-a238-4b06-805b-9284ce0dc290", "name": "Remitano", "type": "light"}]}]}, {"id": "4d0e1409-8c94-40d5-ab71-1bba22bbdba1", "name": "Premier League", "tags": [], "issuers": ["Premier League"], "match_rules": null, "icons_collections": [{"id": "fbfc34b3-e267-42f9-a970-701c68ad217a", "name": "Premier League", "icons": [{"id": "05902763-1a73-4dc7-929a-906853a1e39b", "name": "Premier League", "type": "light"}, {"id": "8ddd9353-3a20-4f4a-978c-1a60641801c6", "name": "Premier League", "type": "dark"}]}]}, {"id": "4d1078f9-c4e1-40e8-bd7c-e8320f6094dc", "name": "Niconico", "tags": [], "issuers": [], "match_rules": [{"text": "Niconico", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Niconico", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "27b1435d-3069-458e-a359-8fc67db876d8", "name": "Niconico", "icons": [{"id": "56e00068-9f41-4df0-9243-8ba705228dc5", "name": "Niconico", "type": "light"}, {"id": "e03e6246-6cf3-443f-b331-39088ab3b1ac", "name": "Niconico", "type": "dark"}]}]}, {"id": "4d44d162-cbd1-4b7e-84e1-a4e8abd6c55d", "name": "ICDSoft", "tags": [], "issuers": [], "match_rules": [{"text": "ICDSoft", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ICDSoft", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "17ff04dd-3db1-4f51-b18b-28b102b175e5", "name": "ICDSoft", "icons": [{"id": "8449b122-89f7-42cf-b26d-16b13a50384b", "name": "ICDSoft", "type": "light"}]}]}, {"id": "4d4c7696-1a84-4c2f-9656-5abd6e66f3c2", "name": "Delinea", "tags": [], "issuers": [], "match_rules": [{"text": "Delinea", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Delinea", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6d18fd7f-1b69-42ab-89d9-b803236b96d7", "name": "Delinea", "icons": [{"id": "9614df75-0cac-4e68-aced-a76db6e18134", "name": "Delinea", "type": "light"}]}]}, {"id": "4d678469-1333-487c-9d06-6aab13081670", "name": "Shrimpy", "tags": [], "issuers": [], "match_rules": [{"text": "Shrimpy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Shrimpy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fb6ea39b-a1ca-41ab-9126-bf449dc83b2e", "name": "Shrimpy", "icons": [{"id": "f543ad12-4085-48be-9d11-b3db2253c526", "name": "Shrimpy", "type": "light"}]}]}, {"id": "4d6f4a49-5c21-4870-a4df-b85a70ba3ff9", "name": "Bonusly", "tags": [], "issuers": [], "match_rules": [{"text": "Bonusly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bonusly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0e74ed64-5615-4e75-95b5-2661cf3243e4", "name": "Bonusly", "icons": [{"id": "c2c06c12-e0aa-4703-b7b2-6e76cc43df10", "name": "Bonusly", "type": "light"}]}]}, {"id": "4d7f651d-7036-42e3-85ed-5559a0e3d11a", "name": "RevenueCat", "tags": [], "issuers": [], "match_rules": [{"text": "RevenueCat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RevenueCat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0ffd72a6-1921-4787-8210-b695f943eb28", "name": "RevenueCat", "icons": [{"id": "332dcb8c-8cbf-42d1-9a11-a4eb0e629fbf", "name": "RevenueCat", "type": "light"}]}]}, {"id": "4d921fe7-dad4-4657-86b3-5241123d624b", "name": "Taxact", "tags": [], "issuers": [], "match_rules": [{"text": "Taxact", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Taxact", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "84ca5690-5ed7-437e-a6cf-457526190654", "name": "Taxact", "icons": [{"id": "74f39319-958f-4981-8174-a3a230a67b77", "name": "Taxact", "type": "light"}]}]}, {"id": "4d9de830-f4cc-4469-8d1c-3d710e918693", "name": "Panic Sync", "tags": [], "issuers": [], "match_rules": [{"text": "Panic Sync", "field": "label", "matcher": "equals", "ignore_case": true}], "icons_collections": [{"id": "f5ca216c-23b7-4cf0-a3f0-4c0006439b5f", "name": "Panic Sync", "icons": [{"id": "ff87161e-deff-4450-97a7-3481b17b2d87", "name": "Panic", "type": "light"}]}]}, {"id": "4de72df8-7a74-45c3-b243-d21c70ed838b", "name": "SignRequest", "tags": [], "issuers": [], "match_rules": [{"text": "SignRequest", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SignRequest", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "98972c4b-0dd8-4e22-8316-7767f2788a6a", "name": "SignRequest", "icons": [{"id": "9bf03726-f502-4aec-923c-38043cd8ee31", "name": "SignRequest", "type": "dark"}, {"id": "fd482d68-a248-4811-bd91-c3d25ac3c060", "name": "SignRequest", "type": "light"}]}]}, {"id": "4e0da46d-51ae-40b0-9f3f-fa9ca9d80464", "name": "DMOJ", "tags": [], "issuers": [], "match_rules": [{"text": "DMOJ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DMOJ", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a57256e1-8fad-4e25-b499-157fc3c38986", "name": "DMOJ", "icons": [{"id": "e32b8629-a7f4-47de-bea4-1d6befc6fc6a", "name": "DMOJ", "type": "light"}]}]}, {"id": "4e16e9e4-55be-433e-922a-a13286096ce9", "name": "OnlyFans", "tags": ["of"], "issuers": [], "match_rules": [{"text": "onlyfans.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dc72a1a9-6dfa-4afa-8147-6c579f11c277", "name": "OnlyFans", "icons": [{"id": "9c953ae0-b21e-47a3-82f5-7dff6071d077", "name": "OnlyFans", "type": "light"}]}]}, {"id": "4e7a1659-0a8a-42d5-a699-30837aac73c4", "name": "Bitpanda", "tags": [], "issuers": [], "match_rules": [{"text": "Bitpanda", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "c20236ed-2e95-476c-b29c-f425d29826ef", "name": "Bitpanda", "icons": [{"id": "4b560ea0-64f3-4ab5-a2ea-28a40fd42aa8", "name": "Bitpanda", "type": "light"}, {"id": "51933475-9a89-4407-be25-6e387b1ac44c", "name": "Bitpanda", "type": "dark"}]}]}, {"id": "4e82c347-7ad9-4b73-bb4d-c6301eed0004", "name": "FreshDesk", "tags": [], "issuers": ["freshworks.com"], "match_rules": [{"text": "freshworks.com", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "05c680d8-bb2f-4ef0-840a-6504fcfdacb5", "name": "FreshDesk", "icons": [{"id": "daa0f095-578a-407b-bbb4-c4e23a11a045", "name": "FreshDesk", "type": "light"}]}]}, {"id": "4ea34b28-fb91-4dce-827a-dbb07d3ef7c3", "name": "IVPN", "tags": [], "issuers": [], "match_rules": [{"text": "IVPN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IVPN", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "62a15dd7-fa76-40e6-a82c-edff4bdf8449", "name": "IVPN", "icons": [{"id": "228793db-4780-487f-a058-f645299ed9b7", "name": "IVPN", "type": "light"}]}]}, {"id": "4ee59893-9ba4-411c-a9fb-5906e1ebad8e", "name": "23andMe", "tags": [], "issuers": [], "match_rules": [{"text": "23andMe", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "23andMe", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cd8d168f-8ad3-4817-8099-794d4f7f45b2", "name": "23andMe", "icons": [{"id": "18192ea2-0050-4789-bc7b-b7f32cd3feff", "name": "23andMe", "type": "light"}]}]}, {"id": "4f0726cf-418e-402d-8400-afbfd772da7b", "name": "Bluehost", "tags": [], "issuers": [], "match_rules": [{"text": "bluehost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5e8235d7-d208-4c9c-8e3b-974d3149a682", "name": "bluehost", "icons": [{"id": "17e0e001-5040-4fec-9dc4-4fabef419e71", "name": "bluehost", "type": "dark"}, {"id": "ba9afc3e-77f7-4a38-9602-5c26946688fd", "name": "bluehost", "type": "light"}]}]}, {"id": "4f2a249a-eb12-48e7-bffc-a78bf7888d73", "name": "Box", "tags": [], "issuers": ["Box"], "match_rules": [], "icons_collections": [{"id": "9af46ee0-475d-41d6-a729-a8d930d16810", "name": "Box", "icons": [{"id": "09f37b9e-dc35-49dd-97a8-504dcf76f5c8", "name": "Box", "type": "light"}, {"id": "97e78591-d1f6-47dd-8f0e-69c84c2b57e2", "name": "Box", "type": "dark"}]}]}, {"id": "4fc36f56-15bd-4724-8c9f-32e7d6c37610", "name": "Capsule", "tags": [], "issuers": [], "match_rules": [{"text": "Capsule", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Capsule", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2a8076dc-b3d1-4b26-81a4-6e199c45ed43", "name": "Capsule", "icons": [{"id": "8dc2f0f5-4a73-435e-8eef-69f83b3d794a", "name": "Capsule", "type": "dark"}, {"id": "c150cb1d-1747-4889-8539-97aa5d7da8ec", "name": "Capsule", "type": "light"}]}]}, {"id": "4fca7ff1-cbf0-464c-9a37-e2cc5351eec6", "name": "Wiggle", "tags": [], "issuers": [], "match_rules": [{"text": "Wiggle", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wiggle", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fa2529c4-598d-479d-aa3b-54cf2177a8cd", "name": "Wiggle", "icons": [{"id": "0561251f-966a-456f-9a8b-cb37d64515dd", "name": "Wiggle", "type": "light"}]}]}, {"id": "5014e45a-94c4-4de7-8fa2-32d8b159a5c3", "name": "Clover", "tags": [], "issuers": [], "match_rules": [{"text": "Clover", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Clover", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1fcc8cb6-813d-4e91-a65f-fb15f4fc7c0d", "name": "Clover", "icons": [{"id": "4bd00dcd-0d0e-417a-81a2-b55589a27f26", "name": "Clover", "type": "light"}]}]}, {"id": "501ba935-3f40-48b0-b512-8e6333e0f753", "name": "VirusTotal", "tags": [], "issuers": [], "match_rules": [{"text": "VirusTotal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VirusTotal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ba03cb07-c2e8-4a8e-a7f6-039444870b70", "name": "VirusTotal", "icons": [{"id": "23bdd534-52be-4d82-b846-708892422d6e", "name": "VirusTotal", "type": "light"}]}]}, {"id": "50547632-724e-4ed9-a552-e5c3bc9bac8d", "name": "Doppler", "tags": [], "issuers": [], "match_rules": [{"text": "Doppler", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Doppler", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0c28c47d-6bc2-4534-a99b-3d6fdc1ed88a", "name": "Doppler", "icons": [{"id": "659f2ad5-8a53-4a6d-9dcf-23f5e12896a9", "name": "Doppler", "type": "light"}]}]}, {"id": "50a5330a-e640-4969-819a-e16486a2b009", "name": "BeMovil", "tags": [], "issuers": [], "match_rules": [{"text": "BeMovil", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BeMovil", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "bcc809b3-41d2-4c7d-bf2f-9509260d194a", "name": "BeMovil", "icons": [{"id": "0d31a9e4-0973-4d56-9db7-4b1a0ea2c004", "name": "BeMovil", "type": "light"}]}]}, {"id": "50e27adc-00fe-4d9d-a8b5-323eae43e8f8", "name": "San Francisco Fire Credit Union", "tags": [], "issuers": [], "match_rules": [{"text": "San Francisco Fire Credit Union", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "San Francisco Fire Credit Union", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7e4420d5-62de-45d2-a86d-ce14b017064f", "name": "San Francisco Fire Credit Union", "icons": [{"id": "20efa83d-d631-4ab3-805f-640a9c147bc1", "name": "San Francisco Fire Credit Union", "type": "light"}]}]}, {"id": "510e06de-8861-44a0-a4b4-831f8392b097", "name": "Hostpoint", "tags": [], "issuers": [], "match_rules": [{"text": "Hostpoint", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "f70ff97e-e4b1-46ae-b8de-69795cd9ef04", "name": "Hostpoint", "icons": [{"id": "2420ac51-9eed-4153-9aa0-695f03078989", "name": "Hostpoint", "type": "light"}]}]}, {"id": "51251986-e6c3-438b-9c05-2362cc53ba2b", "name": "WoltLab", "tags": [], "issuers": [], "match_rules": [{"text": "WoltLab", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "WoltLab", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85bdf4f1-abbb-4fca-9209-e182d43e489a", "name": "WoltLab", "icons": [{"id": "51aa09da-f264-4043-992a-44876f452a19", "name": "WoltLab", "type": "light"}]}]}, {"id": "513a463d-0a51-4cbc-b531-6e2c69aa7a76", "name": "AscendEX", "tags": [], "issuers": [], "match_rules": [{"text": "AscendEX", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "540fbcef-8030-4bc0-aea9-5b8d9dd6c3d1", "name": "AscendEX", "icons": [{"id": "b7ba6c17-1165-4ec8-8ac7-2c3429275b88", "name": "AscendEX", "type": "light"}]}]}, {"id": "51ced224-0dc2-4a46-be4f-3f6fefc7c48f", "name": "Bitfinex", "tags": [], "issuers": [], "match_rules": [{"text": "Bitfinex", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "24d139a7-9783-4668-bb22-59696c118069", "name": "Bitfinex", "icons": [{"id": "3efcdbb3-aa42-4692-82eb-633c8a4db9ff", "name": "Bitfinex", "type": "light"}]}]}, {"id": "51f58dab-5f75-4199-8ed7-09d75be1d30d", "name": "SoulSoftware", "tags": [], "issuers": ["SoulSoftware"], "match_rules": null, "icons_collections": [{"id": "c8f30ed4-4ab0-4607-9b0c-b7f3178af38e", "name": "SoulSoftware", "icons": [{"id": "689f41c9-e2b1-4358-9782-706dd4586eeb", "name": "SoulSoftware", "type": "light"}]}]}, {"id": "51f6194c-93d1-41f4-b65f-f80136ce2fb7", "name": "Nuki", "tags": [], "issuers": ["Nuki"], "match_rules": null, "icons_collections": [{"id": "824651bb-1696-4a86-9c8a-a0ad50d15ba2", "name": "Nuki", "icons": [{"id": "4225959b-f7ca-43ee-b3e8-ae4641fe1005", "name": "Nuki", "type": "dark"}, {"id": "ee553e5a-27f2-4f4e-8716-80fc71626009", "name": "Nuki", "type": "light"}]}]}, {"id": "51fb583d-61d0-4bfe-8f6e-5e44adc233bf", "name": "Healthchecks", "tags": [], "issuers": ["Healthchecks.io"], "match_rules": null, "icons_collections": [{"id": "28703409-a58e-473d-9690-ba490c139f34", "name": "Healthchecks", "icons": [{"id": "30a94917-8b0a-4c87-9c58-e756e8e781c7", "name": "Healthchecks", "type": "light"}]}]}, {"id": "520878df-f9c0-45c2-813b-8918c4c5f94b", "name": "NinjaRMM", "tags": [], "issuers": ["NinjaRMM"], "match_rules": null, "icons_collections": [{"id": "46dfc67b-6fa3-45f0-a1e9-58982eb56031", "name": "NinjaRMM", "icons": [{"id": "21b40e43-5bbb-4c76-a0ea-6e09104ee09d", "name": "NinjaRMM", "type": "dark"}, {"id": "85207e62-35ef-4ccb-896c-07d15ff14417", "name": "NinjaRMM", "type": "light"}]}]}, {"id": "524512bc-9262-41cd-babb-1193dcd07066", "name": "Telzio", "tags": [], "issuers": [], "match_rules": [{"text": "Telzio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Telzio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "01d0de55-64f4-477f-8ea4-a28a81a1666c", "name": "Telzio", "icons": [{"id": "023cd58c-270f-40e1-8fe5-1b0056ba729d", "name": "telzio", "type": "dark"}, {"id": "103324dc-bd79-4b6a-8942-5c1894235bf1", "name": "telzio", "type": "light"}]}]}, {"id": "5309d9da-1916-40a9-8d91-18fcca147bd4", "name": "Open Science Framework (OSF)", "tags": [], "issuers": [], "match_rules": [{"text": "Open Science Framework (OSF)", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Open Science Framework (OSF)", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e922d67d-12b5-492d-adec-bc7474bf37af", "name": "Open Science Framework (OSF)", "icons": [{"id": "9be7280d-885b-4e3a-947e-9526fb40c0e4", "name": "Open Science Framework (OSF)", "type": "light"}]}]}, {"id": "5318083f-0330-4384-869f-8c76ad862337", "name": "Chargebee", "tags": [], "issuers": ["Chargebee"], "match_rules": [], "icons_collections": [{"id": "400fced8-6fac-488a-8154-85be47d84abe", "name": "Chargebee", "icons": [{"id": "6368a547-20cc-4674-bdff-dd3e0fb39e24", "name": "Chargebee", "type": "light"}]}]}, {"id": "532c2415-76db-4372-967b-52cc45925219", "name": "LATOKEN", "tags": [], "issuers": [], "match_rules": [{"text": "LATOKEN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LATOKEN", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d4bfd844-4a05-4fec-982a-befe2b1c6924", "name": "LATOKEN", "icons": [{"id": "1ad9b76e-ef5b-4927-9e56-d732a7a0e02d", "name": "LATOKEN", "type": "light"}]}]}, {"id": "533125d2-0aaa-428d-970c-2556cf8714e6", "name": "Bugzilla@Mozilla", "tags": [], "issuers": [], "match_rules": [{"text": "Bugzilla@Mozilla", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bugzilla@Mozilla", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "185d6e0e-12d5-4e2b-aa46-3c68b7feb4aa", "name": "Bugzilla@Mozilla", "icons": [{"id": "6c51aa1c-6cf5-4bf7-85fe-67e06ffcbb27", "name": "Bugzilla@Mozilla", "type": "light"}]}]}, {"id": "5335e427-584e-4f93-962c-a7a50011fe69", "name": "Remote Desktop Manager", "tags": [], "issuers": [], "match_rules": [{"text": "Remote Desktop Manager", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Remote Desktop Manager", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "42bf1357-f9a4-468a-8516-6de803af8e03", "name": "Remote Desktop Manager", "icons": [{"id": "9a804124-7888-409a-b903-55621e76401a", "name": "Remote Desktop Manager", "type": "light"}]}]}, {"id": "537300d9-2587-4a58-8788-cd1369d150a1", "name": "Pennsylvania Dept of Revenue myPATH", "tags": [], "issuers": [], "match_rules": [{"text": "Pennsylvania Dept of Revenue myPATH", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pennsylvania Dept of Revenue myPATH", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b361765f-a29c-44e1-9a72-eaff6f8826ac", "name": "Pennsylvania Dept of Revenue myPATH", "icons": [{"id": "ea5f6ba5-f28f-458e-9e13-f87385b770c5", "name": "Pennsylvania Dept of Revenue myPATH", "type": "light"}]}]}, {"id": "53f88a7f-547d-437e-b702-bab47f68d069", "name": "DNSimple", "tags": [], "issuers": [], "match_rules": [{"text": "DNSimple", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DNSimple", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "169f08a5-6be2-4230-932a-5c2701e3e74d", "name": "DNSimple", "icons": [{"id": "e35e8020-24fe-47a9-b4be-a17a29bb2170", "name": "DNSimple", "type": "light"}]}]}, {"id": "53fba8f1-df0b-4efc-82b0-68b60a5be8af", "name": "fortrabbit", "tags": [], "issuers": [], "match_rules": [{"text": "fortrabbit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "fortrabbit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "efe89b5d-cf7d-4620-a7ec-3d6d775b4d8f", "name": "fortrabbit", "icons": [{"id": "38d76216-bfa4-401e-b036-d6b56fedd8e9", "name": "fortrabbit", "type": "light"}]}]}, {"id": "53fc964a-17d5-40b6-a274-19578701609d", "name": "ESET", "tags": ["homr"], "issuers": [], "match_rules": [{"text": "ESET", "field": "issuer", "matcher": "starts_with", "ignore_case": true}, {"text": "ESET", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "0c8f14a4-d69d-4021-bdaa-5a7821e3f0b4", "name": "ESET HOME", "icons": [{"id": "abb0bfc3-b044-4026-af55-b41f00c05eba", "name": "ESET HOME", "type": "light"}, {"id": "afe063ee-1314-4c88-bd54-0466fba8f163", "name": "eset", "type": "dark"}]}]}, {"id": "54145e0d-6005-4961-b61b-9d39bb21abef", "name": "Scalr", "tags": [], "issuers": [], "match_rules": [{"text": "Scalr", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Scalr", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "95433532-c1b3-45cd-8a78-24e0297eaf7b", "name": "Scalr", "icons": [{"id": "0705c85e-5587-4639-8d10-88abd458efe5", "name": "Scalr", "type": "light"}]}]}, {"id": "54202edd-b74c-42a8-992c-6f6ccadb6a63", "name": "Shareworks", "tags": ["Solium"], "issuers": [], "match_rules": [{"text": "Shareworks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Shareworks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "59bcbc4d-3727-4430-ab39-885b0677d1c1", "name": "Shareworks", "icons": [{"id": "e0614ecd-8fdc-43c6-868d-2fb4fd26c81a", "name": "Shareworks", "type": "light"}]}]}, {"id": "548f3406-8633-48ab-a1c7-9f755c8dd428", "name": "Trellix", "tags": [], "issuers": [], "match_rules": [{"text": "Trellix", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Trellix", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2e13be43-bad8-4e37-bc19-1c95d90c986a", "name": "Trellix", "icons": [{"id": "dee2e54f-2331-45d7-91eb-ec11af966170", "name": "Trellix", "type": "light"}, {"id": "eec3a7b7-35e5-4a88-8412-4c43fca135a3", "name": "Trellix", "type": "dark"}]}]}, {"id": "549a306a-f8ca-444c-96e6-1b832491b443", "name": "NDAX", "tags": [], "issuers": ["NDAX"], "match_rules": null, "icons_collections": [{"id": "2fb7a45b-7e61-40a8-a258-3c7e5172f355", "name": "NDAX", "icons": [{"id": "497bcb39-bfb8-4a6f-b95f-edbad88f931c", "name": "NDAX", "type": "light"}]}]}, {"id": "54e07a74-ba7b-43aa-bc8d-aab70be10469", "name": "State Employees Federal Credit Union", "tags": ["sefcu"], "issuers": [], "match_rules": [{"text": "State Employees Federal Credit Union", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "State Employees Federal Credit Union", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "56d5c3f4-bc20-4960-8d60-f38cec78b1f8", "name": "State Employees Federal Credit Union", "icons": [{"id": "61cb2805-dec2-49f9-85bd-5d07d9067f62", "name": "State Employees Federal Credit Union", "type": "dark"}, {"id": "c0d06ddc-3296-430f-88ed-129c6d0dae29", "name": "State Employees Federal Credit Union", "type": "light"}]}]}, {"id": "54f6272f-e6c1-4a88-8e2c-a1b0a490c55d", "name": "BackBlaze", "tags": [], "issuers": ["Backblaze"], "match_rules": [], "icons_collections": [{"id": "d92bde37-a6d6-475e-b71e-adb362efa18a", "name": "BackBlaze", "icons": [{"id": "2ca75226-1f6b-4acf-91d4-f590ee0bab32", "name": "BackBlaze", "type": "light"}]}]}, {"id": "556058b7-348b-405a-9739-0a3992e2a073", "name": "Affinity", "tags": [], "issuers": ["Affinity"], "match_rules": null, "icons_collections": [{"id": "bd76cb19-7313-44fb-919f-8f3635d045fc", "name": "Affinity", "icons": [{"id": "5f313a47-1484-439f-81b1-a196b66b6e7f", "name": "Affinity", "type": "dark"}, {"id": "7180aa0a-ec10-4cfa-959f-04af4163d5e3", "name": "Affinity", "type": "light"}]}]}, {"id": "55a63bba-71bd-4064-a7d4-ec1122e27b81", "name": "World4You", "tags": [], "issuers": [], "match_rules": [{"text": "World4You", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "World4You", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b2b1aed3-c166-44a7-826c-f15c20642cb7", "name": "World4You", "icons": [{"id": "5b82abb4-5ce0-4542-8974-9aa91248010b", "name": "World4You", "type": "light"}]}]}, {"id": "55af098d-a923-4719-b24f-894aaff45e58", "name": "Otter AI", "tags": [], "issuers": [], "match_rules": [{"text": "Otter AI", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Otter AI", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Otter(\\+|\\s|-|_)AI", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Otter(\\+|\\s|-|_)AI", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "ce04e4ee-bce0-4913-ad2b-f20936cb8ae5", "name": "Otter AI", "icons": [{"id": "95853196-53df-47b8-8e8c-bedcf0fbd833", "name": "Otter AI", "type": "light"}]}]}, {"id": "55b8e8b9-3367-4365-a341-f2e9064eee91", "name": "Logitech G", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "a8a6625d-121c-4762-8199-03525dc511c7", "name": "Logitech G", "icons": [{"id": "9074b95e-3fab-4560-92d6-71d81e11d9ef", "name": "Logitech G", "type": "dark"}, {"id": "c32a18bd-76f5-4381-a1a4-4ca7fe8d2fc7", "name": "Logitech G", "type": "light"}]}]}, {"id": "55d34acd-3022-4ad9-bc87-06c075d5dd15", "name": "Dashlane", "tags": [], "issuers": ["Dashlane"], "match_rules": null, "icons_collections": [{"id": "fed7d171-3d84-430c-91d5-4378eb83dedc", "name": "Dashlane", "icons": [{"id": "06a08005-3061-4dde-b7a9-4d86f630104a", "name": "Dashlane", "type": "dark"}, {"id": "214a97bf-c4e7-48e3-a3ce-6a38f863d9f8", "name": "Dashlane", "type": "light"}]}]}, {"id": "564e69cd-b099-46e0-b4c2-bdc102ba99c2", "name": "KeyCDN", "tags": [], "issuers": [], "match_rules": [{"text": "KeyCDN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "KeyCDN", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b8a56771-28dd-40f9-8e84-dab5d2039b97", "name": "KeyCDN", "icons": [{"id": "0210d142-11ae-4041-b308-417ab948359f", "name": "KeyCDN", "type": "light"}]}]}, {"id": "565551d7-cd9b-4800-bc14-279129fac83c", "name": "CMG", "tags": [], "issuers": [], "match_rules": [{"text": "CMG", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CMG", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6810950a-eb0c-46fd-9a02-273a81952689", "name": "CMG", "icons": [{"id": "370b60dc-5605-48d1-8b1c-97139dfbd9f2", "name": "CMG", "type": "dark"}, {"id": "c23893e6-d98f-4b1b-b7a1-a281cf0df1f3", "name": "CMG", "type": "light"}]}]}, {"id": "56cc9fc0-0f57-4777-a3e0-ccaad03234a8", "name": "Mercado Libre", "tags": [], "issuers": ["Mercado Libre"], "match_rules": [], "icons_collections": [{"id": "5cb7030d-45e2-45a4-b8c6-2b5d61a3783e", "name": "Mercado Libre", "icons": [{"id": "0b7a88a1-4c27-41b7-b0a9-242b5bf36589", "name": "Mercado Libre", "type": "light"}]}]}, {"id": "56f87638-e0b8-4059-b82c-0ca3a840d927", "name": "Huobi", "tags": [], "issuers": [], "match_rules": [{"text": "Huobi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Huobi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6b94dc16-5d8a-499c-8f7f-3c0c34e443a8", "name": "Huobi", "icons": [{"id": "19ecdf80-d5f9-4233-968f-3c452afead30", "name": "Huobi", "type": "light"}, {"id": "dd66ac06-1a7f-4f3a-aeda-a214b2bf6527", "name": "Huobi", "type": "dark"}]}]}, {"id": "5702306f-f354-4325-a35e-287079c31607", "name": "POST Luxembourg", "tags": [], "issuers": [], "match_rules": [{"text": "POST Luxembourg", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "POST Luxembourg", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d16c75c4-6e08-4cc7-8d1d-ff58309d44e4", "name": "POST Luxembourg", "icons": [{"id": "c104276e-74fe-4532-a0b5-e87600d09bdd", "name": "POST Luxembourg", "type": "light"}]}]}, {"id": "571bd879-7e0a-49b8-9b24-929bcfaff519", "name": "Buildkite", "tags": [], "issuers": [], "match_rules": [{"text": "Buildkite", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Buildkite", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47701d40-8581-4789-8cd1-b1cf9b191ff3", "name": "Buildkite", "icons": [{"id": "1283fbc4-e230-4f1a-9718-fa748ca9cc44", "name": "Buildkite", "type": "light"}]}]}, {"id": "573b2787-4aaf-4eaa-a065-a1f8d2672b30", "name": "CEX.IO", "tags": [], "issuers": [], "match_rules": [{"text": "CEX.IO", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CEX.IO", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4ea5519a-aa34-45d3-9878-f357e5e23154", "name": "CEX.IO", "icons": [{"id": "7bdaec54-d94a-48d9-a8fe-34c67e7540d3", "name": "CEX.IO", "type": "light"}]}]}, {"id": "57d20be7-1935-45c1-a19a-790c23ddb220", "name": "Republic Wireless", "tags": [], "issuers": [], "match_rules": [{"text": "Republic Wireless", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Republic Wireless", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "74c21844-bcc2-4725-8838-1bc865eaecb3", "name": "Republic Wireless", "icons": [{"id": "32719135-2e18-4f7d-8631-8846a699be40", "name": "Republic Wireless", "type": "light"}]}]}, {"id": "58041c53-2ca3-47da-ab53-f17fbe7f954e", "name": "Nexus Mods", "tags": [], "issuers": ["Nexus Mods"], "match_rules": null, "icons_collections": [{"id": "6ec7d249-30aa-4164-9ba6-87aad37692d8", "name": "Nexus Mods", "icons": [{"id": "2516f13e-6072-496a-a8ce-e71e425e6234", "name": "Nexus Mods", "type": "light"}]}]}, {"id": "58799998-a711-4eb6-8755-838cfac65c5f", "name": "OpenAI", "tags": [], "issuers": ["OpenAI"], "match_rules": null, "icons_collections": [{"id": "0775db30-2bdc-42b6-aaf8-439aaf276c49", "name": "OpenAI", "icons": [{"id": "6dd1bc4a-2a56-4bc5-b3e4-887c2b6851d8", "name": "OpenAI", "type": "light"}, {"id": "bfeb1390-ff0c-4e45-ab0e-96924cfee134", "name": "OpenAI", "type": "dark"}]}]}, {"id": "588921bf-6df7-4d92-a881-9af92e15642b", "name": "Instagram", "tags": [], "issuers": ["Instagram"], "match_rules": [], "icons_collections": [{"id": "f4cad0b9-00d5-420c-804c-d41ce8825eed", "name": "Instagram", "icons": [{"id": "4d9a7691-7e58-4eb2-bbd5-c11a1b9d3390", "name": "Instagram", "type": "light"}]}]}, {"id": "58db05de-2ceb-42da-97b5-00c9ef845c8f", "name": "StatusCake", "tags": [], "issuers": [], "match_rules": [{"text": "StatusCake", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StatusCake", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c5975680-e3af-4e36-a108-717908865909", "name": "StatusCake", "icons": [{"id": "64457582-48c0-49e1-9c86-9bec4db4bda6", "name": "StatusCake", "type": "light"}]}]}, {"id": "58e275d6-8398-4956-b703-64cf9f408ca1", "name": "Adafruit", "tags": [], "issuers": [], "match_rules": [{"text": "Adafruit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Adafruit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a47db328-5e4c-4f98-a37c-742990fe8b60", "name": "Adafruit", "icons": [{"id": "a3ae44b4-590a-4ca0-b0c6-68d78a886c2c", "name": "Adafruit", "type": "light"}, {"id": "d91d63fa-f229-461a-840c-e91245f87d06", "name": "Adafruit", "type": "dark"}]}]}, {"id": "58f88dd4-b0b3-432e-b75b-ca4d030f8a5a", "name": "Freehostia", "tags": [], "issuers": [], "match_rules": [{"text": "Freehostia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Freehostia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77846b2d-bff4-496e-a5e5-2c73eeb383ee", "name": "Freehostia", "icons": [{"id": "890de4e9-1789-46d2-af81-3fae15b55aee", "name": "Freehostia", "type": "light"}, {"id": "99d318fa-8494-4670-9d81-45537de912fb", "name": "Freehostia", "type": "dark"}]}]}, {"id": "5918befe-69a1-4cbf-8291-d616f39d392d", "name": "Textlocal", "tags": [], "issuers": [], "match_rules": [{"text": "Textlocal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Textlocal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aa53fffb-8aed-4b63-b904-be3a72f93c25", "name": "Textlocal", "icons": [{"id": "a64f4d6f-6670-481b-a075-a37d89dc08ca", "name": "Textlocal", "type": "light"}]}]}, {"id": "5929e53b-95f3-426b-a380-8220d1e37e9e", "name": "G2A", "tags": [], "issuers": [], "match_rules": [{"text": "g2a", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b20ef2ce-2235-4309-a02e-dca07e946505", "name": "G2A", "icons": [{"id": "0208f477-7585-47d3-beb0-faf33e1d82a9", "name": "G2A", "type": "light"}, {"id": "2c9c1e57-185c-48ef-86c9-92ca6a487ad9", "name": "G2A", "type": "dark"}]}]}, {"id": "59337f47-8ed5-455b-bc06-81ec692efc24", "name": "INWX", "tags": [], "issuers": [], "match_rules": [{"text": "INWX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "INWX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1311ce99-ef79-4606-8e6e-abc93d54cbe5", "name": "INWX", "icons": [{"id": "378a4fc8-8523-4011-afe8-95e2a5a97612", "name": "INWX", "type": "light"}]}]}, {"id": "593dd333-b586-4ff7-b573-d30277d82789", "name": "Chevrolet", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "a1043452-67bf-4efc-a160-aca21a92b1c9", "name": "Chevrolet", "icons": [{"id": "793776a5-355f-4656-b192-5ac60d9367d6", "name": "Chevrolet", "type": "light"}]}]}, {"id": "5a4eb6e0-0ea7-4b20-8d3e-a480bdd9cb02", "name": "Best Buy", "tags": ["buy"], "issuers": ["Best Buy"], "match_rules": null, "icons_collections": [{"id": "fccbeda3-f69f-4a45-9f83-66bf887d3002", "name": "Best Buy", "icons": [{"id": "686f7e5b-2eb1-457b-9caf-9e7ea3c5d400", "name": "Best Buy", "type": "light"}]}]}, {"id": "5a775bbc-b371-4232-8a8e-b38fd6a36b15", "name": "AOL", "tags": [], "issuers": ["AOL"], "match_rules": null, "icons_collections": [{"id": "ab1de355-e0f4-464a-9913-9357401d5e57", "name": "AOL", "icons": [{"id": "554889e1-893b-45e4-9d6f-640863c2d448", "name": "AOL", "type": "light"}, {"id": "61853fb1-8e02-4ea5-9e28-098d82a9aa29", "name": "AOL", "type": "dark"}]}]}, {"id": "5abb0aad-8f88-4051-a363-2d25219832f9", "name": "DigiCert", "tags": [], "issuers": [], "match_rules": [{"text": "DigiCert", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DigiCert", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c80c921a-bdcf-408b-983c-18e5c236b071", "name": "DigiCert", "icons": [{"id": "00bf40df-f8e0-41a1-b0a1-bfcec09351f9", "name": "DigiCert", "type": "light"}]}]}, {"id": "5b290d3a-dadf-411b-a183-761e68c53520", "name": "ReadMe", "tags": [], "issuers": [], "match_rules": [{"text": "ReadMe", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ReadMe", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9e5ef08d-c36c-4b7a-82c4-cf00a3ebfd95", "name": "ReadMe", "icons": [{"id": "032d2399-07fd-4564-8be9-4ee56c51a91a", "name": "ReadMe", "type": "light"}]}]}, {"id": "5b52736c-5d52-4195-873d-a8ec606dade9", "name": "StackPath", "tags": [], "issuers": [], "match_rules": [{"text": "StackPath", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StackPath", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7db726c4-4803-4e71-98df-8a0d2c0be989", "name": "StackPath", "icons": [{"id": "54562f68-bc2f-4692-baa4-5f06ea0c0319", "name": "StackPath", "type": "light"}]}]}, {"id": "5b52f3e4-4cc6-49a1-9639-ec676dc78e00", "name": "Protolabs", "tags": [], "issuers": [], "match_rules": [{"text": "Protolabs", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Protolabs", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d05f53f7-bbd7-4b9c-bf8a-ea008c9d40a8", "name": "Protolabs", "icons": [{"id": "88703123-297e-4a20-8077-39646c2b0a84", "name": "Protolabs", "type": "light"}]}]}, {"id": "5b545e9a-9f41-4296-93a7-10b5336b8845", "name": "Call of Duty", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "3a70fcc1-a406-4212-bd0c-440dbe6ae824", "name": "Call of Duty", "icons": [{"id": "80f3272d-c493-40ca-babf-b638444ab014", "name": "Call of Duty", "type": "light"}, {"id": "a67013ff-ba14-4a35-8de5-80877c747dd3", "name": "Call of Duty", "type": "dark"}]}]}, {"id": "5b986ca0-c5ca-4f7e-9a97-424b9b2e6655", "name": "Moneybird", "tags": [], "issuers": [], "match_rules": [{"text": "Moneybird", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Moneybird", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "14e21fbc-61ad-4bb7-af20-341714caa161", "name": "Moneybird", "icons": [{"id": "8156525e-1239-411f-8997-6a61edae5311", "name": "Moneybird", "type": "light"}]}]}, {"id": "5ba2c9cd-cca9-4330-a09d-7adf5afd0184", "name": "Atlassian", "tags": [], "issuers": ["Atlassian", "Confluence"], "match_rules": [], "icons_collections": [{"id": "cd70f801-5ee2-41ff-8ad5-40c9c1e9cacb", "name": "Atlassian", "icons": [{"id": "8c1309ca-ad86-4b0a-8138-282b23a4db36", "name": "Atlassian", "type": "light"}]}]}, {"id": "5bc5b82c-47e2-411a-9911-d25fbe464324", "name": "Vultr", "tags": [], "issuers": ["Vultr"], "match_rules": null, "icons_collections": [{"id": "f733981b-6d51-4b1f-ab45-d52624e0362b", "name": "Vultr", "icons": [{"id": "11828364-f049-4e39-9dba-37f395d32678", "name": "Vultr", "type": "dark"}, {"id": "b119e758-3ddd-471a-b60c-4d08b4d18f81", "name": "Vultr", "type": "light"}]}]}, {"id": "5c9efdde-cb62-4304-9f04-d120084a53dd", "name": "Discord", "tags": [], "issuers": ["Discord"], "match_rules": [], "icons_collections": [{"id": "f260ffa4-f41f-408a-aa2a-03d943efe371", "name": "Discord", "icons": [{"id": "df6e1b0c-1a81-4a7f-863e-654b22f6d9b2", "name": "Discord", "type": "light"}]}]}, {"id": "5cc08262-6e24-4eb7-88d4-3511276ab5f9", "name": "Alibaba Cloud", "tags": [], "issuers": ["Aliyun"], "match_rules": null, "icons_collections": [{"id": "67aee011-7509-41b7-8abb-584f529b9e70", "name": "Alibaba Cloud", "icons": [{"id": "715d784f-53a6-4b14-9f0a-0dfa763f1475", "name": "Alibaba Cloud", "type": "light"}]}]}, {"id": "5cc7a323-72c3-4e18-ac71-6e99a3f1ab21", "name": "ORCID", "tags": [], "issuers": [], "match_rules": [{"text": "ORCID", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ORCID", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "529ac5a2-27de-4c74-9673-5e6cbb382ac7", "name": "ORCID", "icons": [{"id": "999a522a-3a1b-4816-a08f-d7fd14ca8a77", "name": "ORCID", "type": "light"}]}]}, {"id": "5cce9662-946c-4e04-8cb4-f4276da76875", "name": "TinyURL", "tags": [], "issuers": [], "match_rules": [{"text": "TinyURL", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TinyURL", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dc9f7d29-a661-4dbf-8de2-1edb853cac21", "name": "TinyURL", "icons": [{"id": "08bec297-7773-4012-a475-d18f39aa53e1", "name": "TinyURL", "type": "light"}]}]}, {"id": "5cece28e-0c32-4242-ad2c-ff0864a6c6f7", "name": "ImprovMX", "tags": [], "issuers": [], "match_rules": [{"text": "ImprovMX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ImprovMX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dc3b4243-717b-477d-b5e9-042572cd9f8d", "name": "ImprovMX", "icons": [{"id": "3c227b73-84be-44fd-833b-2fe8ee1faf70", "name": "ImprovMX", "type": "light"}]}]}, {"id": "5cf8be69-25f5-4d43-aa51-2d54930d247a", "name": "PayPal", "tags": [], "issuers": ["PayPal"], "match_rules": [], "icons_collections": [{"id": "ff415e4a-32f1-47be-9274-44ab42f79720", "name": "PayPal", "icons": [{"id": "80c23015-bb4f-4637-85fb-94b09a06e1a2", "name": "PayPal", "type": "light"}, {"id": "817cb56f-54d2-4fb4-976c-0a0f60220215", "name": "PayPal", "type": "dark"}]}]}, {"id": "5d2778b3-e293-49e7-a39e-66d86c21dd96", "name": "Dropbox", "tags": [], "issuers": ["Dropbox"], "match_rules": [], "icons_collections": [{"id": "3c82e6ee-906c-4d6a-9992-01ab376614db", "name": "Dropbox", "icons": [{"id": "9f71451b-676a-4226-962b-9f1040986ebc", "name": "Dropbox", "type": "dark"}, {"id": "b44f8e4c-d17a-447d-956b-ada61c5823ef", "name": "Dropbox", "type": "light"}]}]}, {"id": "5d3857d5-c819-4fc2-9cbb-14572bbe0bd3", "name": "BeyondTrust", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "5d8c1875-0d39-4178-94db-1f3ba3bbaca1", "name": "BeyondTrust", "icons": [{"id": "835f2f2b-a196-4cd7-8d33-969c7c9ac48f", "name": "BeyondTrust", "type": "light"}]}]}, {"id": "5d4710e6-1eb7-4d29-b1aa-1c416a20773d", "name": "ClouDNS", "tags": [], "issuers": [], "match_rules": [{"text": "ClouDNS", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "e4ca9fb2-281d-4146-9dd3-083899d1515d", "name": "ClouDNS", "icons": [{"id": "bc74d43b-713a-470f-a0b6-9bc4fdc57be5", "name": "ClouDNS", "type": "light"}]}]}, {"id": "5d4a5efd-f4c8-4b0b-845e-b502df23c341", "name": "NetEase Mail", "tags": [], "issuers": [], "match_rules": [{"text": "NetEase Mail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NetEase Mail", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0ab0d45e-340f-433a-b205-2d1a2de951ad", "name": "NetEase Mail", "icons": [{"id": "aee3aec4-a68b-4b7b-b0ae-1ec1a30c8707", "name": "NetEase Mail", "type": "light"}]}]}, {"id": "5d4c1ad0-35e7-4205-811b-52d596651ca2", "name": "AngelList", "tags": [], "issuers": ["AngelList"], "match_rules": [], "icons_collections": [{"id": "6900249f-744b-43df-86bd-8ad8fb51965a", "name": "AngelList", "icons": [{"id": "297942dd-8733-4200-8044-1cbfac87651a", "name": "AngelList", "type": "dark"}, {"id": "59ef6432-8054-4db9-8968-0d176c01467c", "name": "AngelList", "type": "light"}]}]}, {"id": "5d95f8ed-e678-4cea-a700-bca526ee0891", "name": "BitMEX", "tags": [], "issuers": [], "match_rules": [{"text": "BitMEX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitMEX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "54cbbf87-362a-4cce-a614-c11844631e51", "name": "BitMEX", "icons": [{"id": "7060ebc0-6f09-426f-b7bd-963432e849cf", "name": "BitMEX", "type": "light"}]}]}, {"id": "5da3a886-876e-485e-9a37-5c5d1c258ecd", "name": "ENEBA", "tags": [], "issuers": ["ENEBA"], "match_rules": null, "icons_collections": [{"id": "d0239931-f1fb-4d08-ad44-06104a85c83c", "name": "ENEBA", "icons": [{"id": "b655c71a-6b40-464d-8f58-43705c6c071d", "name": "ENEBA", "type": "light"}]}]}, {"id": "5dfa53b5-48c3-48eb-a134-db9ac58e8d34", "name": "Privacy", "tags": [], "issuers": ["Privacy.com"], "match_rules": null, "icons_collections": [{"id": "4fe59ffa-9851-47df-88a2-15104ea2985a", "name": "Privacy", "icons": [{"id": "90110b41-3105-4ec3-956d-bbe84c05c948", "name": "Privacy", "type": "light"}]}]}, {"id": "5e62a68a-88f4-4f3f-ad60-df8ea34bdc57", "name": "MongoDB", "tags": [], "issuers": ["auth.mongodb.com"], "match_rules": [], "icons_collections": [{"id": "e082188e-0759-4827-96ff-acfb35702a52", "name": "MongoDB", "icons": [{"id": "44799abb-abd0-4984-a008-e88ab9070367", "name": "MongoDB", "type": "light"}]}]}, {"id": "5f6cf4bf-e408-41bb-a520-4c27417ba474", "name": "Infomaniak", "tags": [], "issuers": ["Infomaniak"], "match_rules": null, "icons_collections": [{"id": "5faf5121-0161-4b23-a875-b347574b891b", "name": "Infomaniak", "icons": [{"id": "47d76376-6a44-41b3-a800-c69cdd8fe393", "name": "Infomaniak", "type": "light"}]}]}, {"id": "5fa52ba1-3b2a-4998-90be-b89dc850be9d", "name": "BTCPOP", "tags": [], "issuers": [], "match_rules": [{"text": "BTCPOP", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BTCPOP", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b58bfb1-12fb-4361-986b-a4a1b7777553", "name": "BTCPOP", "icons": [{"id": "a3f1babf-d5b4-40e7-941e-2e203106b57d", "name": "BTCPOP", "type": "light"}]}]}, {"id": "5fac27e0-e0e4-4e5c-ba7c-54ca0c5f1482", "name": "Coinbase", "tags": [], "issuers": ["Coinbase"], "match_rules": [], "icons_collections": [{"id": "5bd3cbd6-32b6-41f0-baa3-3fccaf624269", "name": "Coinbase", "icons": [{"id": "ea3196b2-7a7d-45ed-a4e8-144e837a013e", "name": "Coinbase", "type": "light"}]}]}, {"id": "5fcd18af-731d-402e-8da8-69beba902bb3", "name": "Aussie Broadband", "tags": [], "issuers": [], "match_rules": [{"text": "Aussie Broadband", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Aussie Broadband", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "63aabeae-81b0-4f97-a802-9ed78f96e288", "name": "Aussie Broadband", "icons": [{"id": "e37eaee1-f5c6-44ab-a9e5-7b61f2bdfe00", "name": "Aussie Broadband", "type": "dark"}, {"id": "ed998ce7-1689-468b-83a0-b8d58a91ec5a", "name": "Aussie Broadband", "type": "light"}]}]}, {"id": "6007631c-69f9-4613-b6b3-c90e2dd0ab44", "name": "Cloudways", "tags": [], "issuers": [], "match_rules": [{"text": "Cloudways", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cloudways", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f8e7eb20-5387-4efd-a903-585698e53cdb", "name": "Cloudways", "icons": [{"id": "ccdf7fa9-7c3a-4f06-bbb1-ec790886db90", "name": "Cloudways", "type": "light"}]}]}, {"id": "60453565-c595-450b-bd3d-62180f8044b2", "name": "Localize", "tags": [], "issuers": [], "match_rules": [{"text": "Localize", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Localize", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "34e67fb2-9608-4c3f-b357-7ef2c702cdfa", "name": "Localize", "icons": [{"id": "105c45f4-4602-4f2b-8070-b626db77d8be", "name": "Localize", "type": "light"}]}]}, {"id": "609517dd-c33f-4af9-8679-b8b9b2d96a98", "name": "Skype", "tags": [], "issuers": [], "match_rules": [{"text": "Skype", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Skype", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "39b080c5-0d73-4b8d-8a05-d258d3c69f0a", "name": "Skype", "icons": [{"id": "86953fcc-c53b-48dc-b7f3-a5742ded0904", "name": "Skype", "type": "light"}]}]}, {"id": "60975b64-7a9d-4226-ae20-9d6bc2762e47", "name": "Expensify", "tags": [], "issuers": [], "match_rules": [{"text": "Expensify", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Expensify", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "be6564d9-bfa8-498d-9020-0373c7317aa1", "name": "Expensify", "icons": [{"id": "a5e8be9a-1606-47bc-90ad-4d71f70b60f3", "name": "Expensify", "type": "dark"}, {"id": "da3267e3-a4cf-4efb-811e-ac0223448006", "name": "Expensify", "type": "light"}]}]}, {"id": "60c8159a-cf70-4375-9473-ec98a11c1c75", "name": "LocalMonero", "tags": [], "issuers": [], "match_rules": [{"text": "LocalMonero", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LocalMonero", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4be367e8-b77f-4bf3-b8a5-e93e5d451f9e", "name": "LocalMonero", "icons": [{"id": "5154a3e5-26ff-4750-9547-8a426cea96a1", "name": "LocalMonero", "type": "light"}]}]}, {"id": "60c8875d-2845-4c81-841f-918e5e1a7298", "name": "Shortcut", "tags": [], "issuers": [], "match_rules": [{"text": "Shortcut", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Shortcut", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4817e758-bcf3-404b-95f9-65292f4d3483", "name": "Shortcut", "icons": [{"id": "d67c412d-d0f0-4e5a-9da2-c186b319e450", "name": "Shortcut", "type": "light"}]}]}, {"id": "60cefb59-bc28-4490-b5f5-546641d3a561", "name": "Sailthru", "tags": [], "issuers": [], "match_rules": [{"text": "Sailthru", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sailthru", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85952097-0eaf-47ff-9744-8bddce53fc26", "name": "Sailthru", "icons": [{"id": "6ec6fd96-c11e-4c60-b662-daef72fdcc14", "name": "Sailthru", "type": "light"}]}]}, {"id": "60f81c6d-b3c1-4fbf-bf86-f28df7376815", "name": "CrashPlan", "tags": [], "issuers": [], "match_rules": [{"text": "CrashPlan", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CrashPlan", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "37b3876f-62f5-4dcf-a24e-13c18ab36111", "name": "CrashPlan", "icons": [{"id": "aaee140b-f555-4fbc-8a57-49cb6cd0807d", "name": "CrashPlan", "type": "light"}]}]}, {"id": "6157ef8e-ebda-443c-9602-02b7e1a531a6", "name": "Outbrain", "tags": [], "issuers": [], "match_rules": [{"text": "Outbrain", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Outbrain", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bad851a0-3907-4a7f-aa45-96f70a3f688b", "name": "Outbrain", "icons": [{"id": "69393d57-9431-4faa-a420-92b0d1577c3d", "name": "Outbrain", "type": "light"}]}]}, {"id": "61650469-dc5d-4fb7-85e3-b5d4f277377a", "name": "Restream", "tags": [], "issuers": [], "match_rules": [{"text": "Restream", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Restream", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "46879a21-13b9-4125-8530-35100a992ad8", "name": "Restream.io", "icons": [{"id": "668577d4-a416-4f37-add1-1ee2ef381f26", "name": "Restream", "type": "dark"}, {"id": "a2d743f6-981c-4bb6-888e-622a588c32f2", "name": "Restream.io", "type": "light"}]}]}, {"id": "61c0c1e1-b2b5-4dee-ab0c-735f1b70a5b5", "name": "Maropost Commerce Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "Maropost Commerce Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Maropost Commerce Cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fa5f4a79-9c2a-4060-bfcc-259778de34cf", "name": "Maropost Commerce Cloud", "icons": [{"id": "22a7d3df-3923-4973-a9ac-a87e664058b8", "name": "Maropost Commerce Cloud", "type": "light"}]}]}, {"id": "61f58f09-cad4-4ab3-8417-40c0e49ff717", "name": "VicRoads", "tags": [], "issuers": [], "match_rules": [{"text": "VicRoads", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VicRoads", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "888fddf1-10d6-41f1-b17a-1f49844ee543", "name": "VicRoads", "icons": [{"id": "797a9333-6542-4a08-a13c-1668cf4df2e6", "name": "VicRoads", "type": "light"}]}]}, {"id": "621298e1-9f5c-4ca8-87e2-632d8cb8397e", "name": "Tresorit", "tags": [], "issuers": ["Tresorit"], "match_rules": null, "icons_collections": [{"id": "ab897d14-54a5-4b0f-ad81-60f5f55a6841", "name": "Tresorit", "icons": [{"id": "70718233-36dc-494f-b53d-19763886a1bd", "name": "Tresorit", "type": "light"}]}]}, {"id": "62224345-10ea-4616-95eb-4dc3688cf7c0", "name": "Jitbit Helpdesk", "tags": [], "issuers": [], "match_rules": [{"text": "Jitbit Helpdesk", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Jitbit Helpdesk", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "972b593e-a13d-4c5c-8365-16069984e894", "name": "Jitbit Helpdesk", "icons": [{"id": "2d7c8b74-6cbd-4500-95ea-b7798d72a703", "name": "Jitbit Helpdesk", "type": "light"}]}]}, {"id": "62615ca7-6e59-4074-8f58-2fe516885860", "name": "H&R Block", "tags": [], "issuers": [], "match_rules": [{"text": "H&R Block", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "H&R Block", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47f0a7a1-ce69-4356-88d2-d83b8b49befb", "name": "H&R Block", "icons": [{"id": "2d08682a-9b45-4ecd-b828-f24f52263817", "name": "H&R Block", "type": "light"}]}]}, {"id": "62669444-e58b-49b9-9c9a-8c042865ceb0", "name": "VolantaApp", "tags": [], "issuers": ["VolantaApp"], "match_rules": null, "icons_collections": [{"id": "d7b9013c-1ead-4de4-968f-b5233a1bd44c", "name": "VolantaApp", "icons": [{"id": "e2891051-310f-487b-839d-7ed83fbcbfc9", "name": "VolantaApp", "type": "light"}]}]}, {"id": "62d46581-9f65-4b34-b415-214726bd4e86", "name": "Invictus Capital", "tags": [], "issuers": [], "match_rules": [{"text": "Invictus Capital", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Invictus Capital", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0ce28e8b-c2d8-4976-9f4d-7efff0c47757", "name": "Invictus Capital", "icons": [{"id": "a2485f3e-50c2-4f57-93b7-56d2fde4b734", "name": "Invictus Capital", "type": "light"}]}]}, {"id": "62e56d6c-c438-4949-a033-c7588b92e403", "name": "Trello", "tags": [], "issuers": ["Trello"], "match_rules": [], "icons_collections": [{"id": "af39f910-f20f-4210-9f02-4d91ae108fc7", "name": "Trello", "icons": [{"id": "fa9d64f9-725b-4f23-85d2-1b78ef050870", "name": "Trello", "type": "light"}]}]}, {"id": "63751c07-45a7-470a-9ce0-22968fbcb53c", "name": "Gandi", "tags": [], "issuers": [], "match_rules": [{"text": "Gandi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Gandi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "51332a22-9137-4fde-93e0-2ecf87f544c4", "name": "Gandi", "icons": [{"id": "2fae911a-1989-4817-b6db-75c80698492c", "name": "Gandi", "type": "light"}]}]}, {"id": "63ac70c3-a0b7-42ea-b638-39b685f0780f", "name": "500px.com", "tags": ["px"], "issuers": ["500px"], "match_rules": null, "icons_collections": [{"id": "4362ce74-062f-4794-8e3c-08b39ee0b8e5", "name": "500px", "icons": [{"id": "8ac2fbcd-b737-44a5-950d-7047fb0b72c3", "name": "500px", "type": "light"}, {"id": "b3c38c32-a348-4f8f-bf3b-6d22256d8fbb", "name": "500px", "type": "dark"}]}]}, {"id": "63cbf7e9-87b0-41d1-b242-c90ad2783a63", "name": "LiteBit", "tags": [], "issuers": ["litebit.eu"], "match_rules": [], "icons_collections": [{"id": "f4f47eab-e255-48ef-9be8-558f3c6af045", "name": "LiteBit", "icons": [{"id": "a2948dc2-3db9-485c-b59c-d006de6ab043", "name": "LiteBit", "type": "light"}]}]}, {"id": "63d68c75-4211-459c-94c1-9774b81ad290", "name": "Close", "tags": [], "issuers": [], "match_rules": [{"text": "Close", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Close", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "99477aad-aeed-4726-8e7d-6254d594006e", "name": "Close", "icons": [{"id": "e04fff1f-19ed-43d1-b64d-c6a873dcb7fc", "name": "Close", "type": "light"}]}]}, {"id": "63dc4e18-61e3-4874-96a5-a5a47b490a8e", "name": "SproutSocial", "tags": [], "issuers": [], "match_rules": [{"text": "SproutSocial", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SproutSocial", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ec17be6c-a282-45af-a4ee-8468cd761fc8", "name": "SproutSocial", "icons": [{"id": "7c3f178e-b3b2-4dfa-b625-d63ee68ca533", "name": "SproutSocial", "type": "light"}]}]}, {"id": "63f0bdaf-94fe-4b4c-983f-90442877f0ec", "name": "Uber", "tags": [], "issuers": ["Uber"], "match_rules": [], "icons_collections": [{"id": "b73cc164-8763-4826-8603-0c79f08a1eb5", "name": "Uber", "icons": [{"id": "3a0b50f1-8fc6-46dc-afb7-de1cb61bb8d2", "name": "Uber", "type": "light"}]}]}, {"id": "6440abaf-a8cc-4bfa-a859-6915a6aa6ea2", "name": "ServerPilot", "tags": [], "issuers": [], "match_rules": [{"text": "ServerPilot", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ServerPilot", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "09759620-55c0-415e-adbd-bb158266d437", "name": "ServerPilot", "icons": [{"id": "93f501de-e7de-44d2-b91a-3359124d7e95", "name": "ServerPilot", "type": "light"}, {"id": "de967077-4e1a-4f92-8a91-bb6931981d63", "name": "ServerPilot", "type": "dark"}]}]}, {"id": "64586867-b4b4-493a-80c5-decc332c24e1", "name": "Bubble", "tags": [], "issuers": [], "match_rules": [{"text": "Bubble", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bubble", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "70b18229-ccd0-466c-8779-fc67ab6f6d97", "name": "Bubble", "icons": [{"id": "6c7f120b-1dc5-4588-83ed-e7a8c19cc507", "name": "Bubble", "type": "dark"}, {"id": "8d0d45e7-b665-4081-a0f4-0b45f7958953", "name": "Bubble", "type": "light"}]}]}, {"id": "6481dfa9-0bb0-4a14-a431-0e1a3ac8ceab", "name": "CosmicPvP", "tags": [], "issuers": ["CosmicPvP"], "match_rules": [{"text": "cosmicpvp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a3e24799-f3f1-4daa-b5d2-244bfe53a19f", "name": "CosmicPvP", "icons": [{"id": "43529436-e2b5-4ccc-9c3e-9464638aef8e", "name": "CosmicPvP", "type": "light"}]}]}, {"id": "64c56626-9e78-433d-aae4-6adeeb7bdee0", "name": "Justworks", "tags": [], "issuers": [], "match_rules": [{"text": "Justworks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Justworks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dccfb638-397f-4eef-805a-3ba0eaa5858a", "name": "Justworks", "icons": [{"id": "d8394f3a-77a2-4add-b097-cd7468e63679", "name": "Justworks", "type": "light"}]}]}, {"id": "64d062c5-f527-4454-a1f3-b5eb4fc81824", "name": "Vivaldi", "tags": [], "issuers": [], "match_rules": [{"text": "Vivaldi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Vivaldi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ed14a5fd-6c90-4930-8544-e6cf6df9ecc5", "name": "Vivaldi", "icons": [{"id": "3bf330b1-05c2-407b-8272-1ef0084465b6", "name": "Vivaldi", "type": "light"}]}]}, {"id": "652baed8-fd89-4599-a474-187bb1fc1915", "name": "Ting", "tags": [], "issuers": [], "match_rules": [{"text": "Ting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Ting", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6a138fc7-dcb6-41c2-ae93-08944e969bc4", "name": "Ting", "icons": [{"id": "2e9e04b0-b517-490a-887d-7b08251b289d", "name": "Ting", "type": "light"}]}]}, {"id": "658e12d3-50e5-4321-a388-764188d77143", "name": "Bitbns", "tags": [], "issuers": [], "match_rules": [{"text": "Bitbns", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitbns", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9fd1cf1-c231-429f-a13c-6bd08d46d07f", "name": "Bitbns", "icons": [{"id": "1998d4e4-dc7b-486c-a187-61b62283cc5f", "name": "Bitbns", "type": "light"}]}]}, {"id": "65c4dd13-37fe-400b-9240-2ae7c136d6d6", "name": "KickEX", "tags": [], "issuers": [], "match_rules": [{"text": "KickEX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "KickEX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f601be29-045e-46d4-bfaa-7995cfbde28e", "name": "KickEX", "icons": [{"id": "f5dc9f22-7f7b-45b9-bd45-dea43d00dac0", "name": "KickEX", "type": "light"}]}]}, {"id": "66133db9-164c-4c39-9ede-f909c667fe1c", "name": "BuiltByBit", "tags": [], "issuers": [], "match_rules": [{"text": "builtbybit.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "0f20b30c-1147-485c-b839-2a44a29defa2", "name": "BuiltByBit", "icons": [{"id": "a36c7fb5-2877-44e8-96b1-c5ce7f8c1680", "name": "BuiltByBit", "type": "light"}]}]}, {"id": "66917fb1-38a9-4ae7-95e6-f0ec44746d05", "name": "Storj", "tags": [], "issuers": [], "match_rules": [{"text": "STORJ", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "c6360125-33fe-492a-a2cd-57dd72c18cd3", "name": "Storj.io", "icons": [{"id": "5c986ac9-8e6c-47ca-86f7-93799ed8dd05", "name": "Storj.io", "type": "light"}]}]}, {"id": "6696008c-5ff3-437a-a80d-665a3776a21b", "name": "Migadu", "tags": [], "issuers": [], "match_rules": [{"text": "Migadu", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Migadu", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "941eada5-6fbf-4c78-8096-e51536ec4ce2", "name": "Migadu", "icons": [{"id": "d27697c2-9622-403d-b39c-c7f4b3000bea", "name": "Migadu", "type": "light"}]}]}, {"id": "66e3c12a-d465-427a-8561-1289d6e5bfc5", "name": "Rapid", "tags": ["api"], "issuers": [], "match_rules": [{"text": "RapidAPI", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "a713516c-1656-40b8-91ba-85e986805575", "name": "Rapid", "icons": [{"id": "d0b633e3-6492-4600-9476-4234d30b7ad8", "name": "Rapid", "type": "light"}]}]}, {"id": "66e82703-80a8-41ff-885c-1e677bcc9db8", "name": "N-able", "tags": [], "issuers": [], "match_rules": [{"text": "N-able", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "N-able", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ebda71a0-a384-48de-a3cc-bdb3e92c539b", "name": "N-able", "icons": [{"id": "2293347d-0c79-4d24-928f-a797fc0f29c1", "name": "N-able", "type": "dark"}, {"id": "8445a8a1-ea77-4c57-89ed-7c128d3cfd2a", "name": "N-able", "type": "light"}]}]}, {"id": "671c86ca-8ebd-4dd3-88ff-0a4906b2cc63", "name": "BitcoinTrade", "tags": [], "issuers": [], "match_rules": [{"text": "BitcoinTrade", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitcoinTrade", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "506c2d5e-3dd1-4b9d-b863-468aa1760204", "name": "BitcoinTrade", "icons": [{"id": "26068f2b-c976-4723-881e-aa5de873952b", "name": "BitcoinTrade", "type": "light"}]}]}, {"id": "678bf6be-c919-49c4-ad4e-3ff5d2141803", "name": "Dr. Windows", "tags": [], "issuers": ["Dr. Windows"], "match_rules": null, "icons_collections": [{"id": "b92626fe-68ff-449e-ba64-3e92d55ac2d2", "name": "Dr. Windows", "icons": [{"id": "11361929-9c24-4237-a01a-810000abaf29", "name": "Dr. Windows", "type": "light"}]}]}, {"id": "67dd0749-99e2-405a-9d35-160a1439b1ce", "name": "Carrd", "tags": [], "issuers": ["Carrd"], "match_rules": null, "icons_collections": [{"id": "40577f08-9491-47ab-8d7a-dd9e4e0061b7", "name": "Carrd", "icons": [{"id": "2a9444b9-4af3-43d4-90e4-cca39e5d2853", "name": "Carrd", "type": "light"}]}]}, {"id": "6825a24c-6e3a-4e0c-b0cf-8de9a1294459", "name": "EasySendy", "tags": [], "issuers": [], "match_rules": [{"text": "EasySendy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "EasySendy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c9b4b55a-ad1d-40e0-a8b6-7e47ae3d79ee", "name": "EasySendy", "icons": [{"id": "0943b3b1-6a45-4e93-a3ae-230c7a1d2903", "name": "EasySendy", "type": "light"}]}]}, {"id": "6836df23-9be1-4fe5-865d-98e2a78154a5", "name": "Domgate", "tags": [], "issuers": [], "match_rules": [{"text": "Domgate", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Domgate", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "05c4e169-dd59-44b4-8631-87eb4deac233", "name": "Domgate", "icons": [{"id": "a821821b-5380-42b1-ba5a-fcd133f54751", "name": "Domgate", "type": "dark"}, {"id": "d8467698-1c5b-43bd-a1a9-38ea6b2af66a", "name": "Domgate", "type": "light"}]}]}, {"id": "689e8b6b-63d2-41e3-a7bb-6f935260d0cf", "name": "WeVPN", "tags": [], "issuers": [], "match_rules": [{"text": "WeVPN", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "bf159c1f-31b1-4db3-a8bd-802345ec8a4d", "name": "WeVPN", "icons": [{"id": "88501443-4a33-4f02-883e-e5eb8ea5cdda", "name": "WeVPN", "type": "light"}, {"id": "c5d4d7bd-1a3d-41ff-b223-94390fa472e5", "name": "WeVPN", "type": "dark"}]}]}, {"id": "68c47a3b-5a05-4f56-8096-078a5b9b8e1f", "name": "itch.io", "tags": [], "issuers": ["itch.io"], "match_rules": null, "icons_collections": [{"id": "3ce6bb6a-a1d6-4ac3-8125-a556deee362a", "name": "itch.io", "icons": [{"id": "003f4679-36b8-4fe3-bb99-b8c08cbf31c5", "name": "itch.io", "type": "light"}, {"id": "4abe62ee-7869-4324-9679-363e24216960", "name": "itch.io", "type": "dark"}]}]}, {"id": "690233b0-1e1d-4e7a-a89b-375862cc4666", "name": "BitSkins", "tags": [], "issuers": ["BitSkins"], "match_rules": [], "icons_collections": [{"id": "cd08463b-4344-4269-8561-60029f98ba5b", "name": "BitSkins", "icons": [{"id": "09b37953-f46b-41a2-9888-903ab6ab16ff", "name": "BitSkins", "type": "light"}]}]}, {"id": "6902e7bd-1cf1-4ad2-8151-b7966680b7bf", "name": "Hurricane Electric", "tags": [], "issuers": [], "match_rules": [{"text": "Hurricane Electric", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hurricane Electric", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85c3cf65-87c1-432e-a867-628fc706f86f", "name": "Hurricane Electric", "icons": [{"id": "4ef62790-2299-4c6d-bc22-b93cc4549d4e", "name": "Hurricane Electric", "type": "light"}, {"id": "f3a1006f-cc23-4986-88d4-e59de34808c9", "name": "Hurricane Electric", "type": "dark"}]}]}, {"id": "699c584e-79cf-414b-94d5-64784459f7ed", "name": "Bitrise", "tags": [], "issuers": ["bitrise.io"], "match_rules": [], "icons_collections": [{"id": "7eb65e52-5408-4f85-8500-1da6aecac467", "name": "Bitrise", "icons": [{"id": "7103908e-d834-4f9e-b6f9-96949db0a29b", "name": "Bitrise", "type": "light"}, {"id": "95143e44-b3b0-448d-afe7-dfd0ab399942", "name": "Bitrise", "type": "dark"}]}]}, {"id": "6a2fde3a-b8b2-4321-8a68-d8d2e4ba2ad7", "name": "Onshape", "tags": [], "issuers": [], "match_rules": [{"text": "Onshape", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Onshape", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3014f069-0e58-4015-afcd-5224db4bff96", "name": "Onshape", "icons": [{"id": "823f0ddc-3511-450d-ae73-b012d97e644f", "name": "Onshape", "type": "light"}]}]}, {"id": "6ab00aeb-5f0e-4e29-bb8c-e5b4ae76774c", "name": "Packagist.org", "tags": [], "issuers": ["Packagist"], "match_rules": null, "icons_collections": [{"id": "c3f63528-eece-438a-a74d-ae7ac8c74bfb", "name": "Packagist.org", "icons": [{"id": "fcb9f3e5-ad28-4743-92ad-d66c066a0b4d", "name": "Packagist.org", "type": "light"}]}]}, {"id": "6ab5f6f1-40f4-41e4-82ff-0dd11f9b676c", "name": "Bitkub", "tags": [], "issuers": [], "match_rules": [{"text": "BitKub.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "995db454-f44b-4f16-babf-9e7435dd64c9", "name": "Bitkub", "icons": [{"id": "1944da39-da14-4a3f-bd70-67394135a258", "name": "Bitkub", "type": "light"}]}]}, {"id": "6ace2d5b-c8c6-4e59-95f3-bdc853582d11", "name": "Yotta", "tags": [], "issuers": [], "match_rules": [{"text": "Yotta", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Yotta", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "31b019a6-edd6-48e3-8766-b7eb842899d3", "name": "Yotta", "icons": [{"id": "88215495-ab22-4533-b96d-5b319de880db", "name": "Yotta", "type": "light"}]}]}, {"id": "6b4613c9-b31f-44d7-b498-db0813243983", "name": "Payworks", "tags": [], "issuers": [], "match_rules": [{"text": "Payworks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Payworks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2b16924d-bb0f-453e-a2f0-03c5b0877467", "name": "Payworks", "icons": [{"id": "0b20ed6f-5757-450b-b7ce-3553639e7c91", "name": "Payworks", "type": "light"}]}]}, {"id": "6b563b30-0251-4f4d-bad5-bad41c04273b", "name": "ActiveState", "tags": [], "issuers": [], "match_rules": [{"text": "ActiveState", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ActiveState", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Active State", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Active State", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7b8823ba-f7fd-4d17-b9ad-d5ae5da25c46", "name": "ActiveState", "icons": [{"id": "12b86c29-3a8b-4604-aead-5345f1e8277b", "name": "ActiveState", "type": "light"}, {"id": "dbbd2f3f-5bea-4975-bbf7-f95ee29f6e4f", "name": "ActiveState", "type": "dark"}]}]}, {"id": "6b67b5c1-4824-4038-a875-58cb18ef5d55", "name": "Namesco", "tags": [], "issuers": [], "match_rules": [{"text": "Namesco", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Namesco", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f50c4529-0ee0-42cc-beda-64e0425f9242", "name": "Namesco", "icons": [{"id": "e636b2f4-3cff-464f-a51c-65bf317bf4e6", "name": "Namesco", "type": "light"}, {"id": "ee05d84e-b01d-4274-9482-c5f5e234a218", "name": "Namesco", "type": "dark"}]}]}, {"id": "6ba3148a-c0a2-4e2f-9ee5-40dbde6130ba", "name": "AppVeyor", "tags": [], "issuers": [], "match_rules": [{"text": "AppVeyor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AppVeyor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "11b81890-f35a-4779-8268-98c62618bed4", "name": "AppVeyor", "icons": [{"id": "bb6f3517-128c-4249-bfb3-68b93c4ecf64", "name": "AppVeyor", "type": "light"}]}]}, {"id": "6bddaf34-c512-477b-ac4c-2ab953546f9f", "name": "Korbit", "tags": [], "issuers": [], "match_rules": [{"text": "Korbit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Korbit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fc184076-506e-499f-8a9d-0a618c5db0b9", "name": "Korbit", "icons": [{"id": "7b0a8b60-90a4-4ea0-82f6-5698c33e4fe2", "name": "Korbit", "type": "dark"}, {"id": "c49c7df7-cab8-412b-91e4-6c2e2647c0f9", "name": "Korbit", "type": "light"}]}]}, {"id": "6be22afd-1d40-4375-b5da-5581b886edb8", "name": "Bitvavo", "tags": [], "issuers": ["Bitvavo"], "match_rules": [], "icons_collections": [{"id": "d0785c6f-c7b9-4f15-8521-2162f44f645c", "name": "Bitvavo", "icons": [{"id": "87ae7734-a0b8-48bf-a140-3090bdc183e3", "name": "Bitvavo", "type": "light"}]}]}, {"id": "6bf484c8-e094-42f3-8767-23621b953453", "name": "Circle", "tags": [], "issuers": [], "match_rules": [{"text": "Circle", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Circle", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7d59072a-b3e2-4d85-a22a-2f99c3795f61", "name": "Circle", "icons": [{"id": "2103e00c-ecff-4a85-80c0-a8064b5d5d1a", "name": "Circle", "type": "light"}]}]}, {"id": "6c473443-8455-46e9-8534-10f2f8ca09f4", "name": "Bitcoin.de", "tags": [], "issuers": [], "match_rules": [{"text": "Bitcoin.de", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitcoin.de", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "69bfaaec-2ce9-4cc3-b632-318f87407434", "name": "Bitcoin.de", "icons": [{"id": "d593aba1-83ae-4c9b-b62d-c0c817b3626a", "name": "Bitcoin.de", "type": "light"}]}]}, {"id": "6c72507c-2c2b-491f-9aab-44ba42cf2f36", "name": "Woodforest National Bank", "tags": [], "issuers": [], "match_rules": [{"text": "Woodforest National Bank", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Woodforest National Bank", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b70a8dc-5839-4bbd-80f3-edc7eb31233a", "name": "Woodforest National Bank", "icons": [{"id": "ab36011d-546d-44b9-bf15-6bd613b3139f", "name": "Woodforest National Bank", "type": "light"}]}]}, {"id": "6cfdc4bd-9803-465f-9d17-13806162019c", "name": "Gusto", "tags": [], "issuers": [], "match_rules": [{"text": "gusto", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bf35e203-8367-4eb4-a9ea-d6b22319b761", "name": "Gusto", "icons": [{"id": "62235f88-e4cd-4db0-8790-32217046d9b1", "name": "Gusto", "type": "light"}]}]}, {"id": "6d03b06b-bbb7-4cba-829c-9eabeaa9a0ab", "name": "The Good Cloud", "tags": [], "issuers": ["The Good Cloud"], "match_rules": null, "icons_collections": [{"id": "61022fe4-5b24-452c-8085-81bf30cc6dec", "name": "The Good Cloud", "icons": [{"id": "4b09a87f-f6af-4df0-8091-0a9c81bef2ed", "name": "The Good Cloud", "type": "light"}, {"id": "a822ea60-496b-4de6-ac69-679c5d8ebb28", "name": "The Good Cloud", "type": "dark"}]}]}, {"id": "6d1bfc32-c7ef-4e4b-a975-0d0e2642721f", "name": "TP-Link", "tags": [], "issuers": ["TP-Link"], "match_rules": null, "icons_collections": [{"id": "c0559e31-612c-4a18-b030-65ac6b60e950", "name": "TP-Link", "icons": [{"id": "b8a31420-f83d-49cf-9d6f-fce941d98896", "name": "TP-Link", "type": "light"}]}]}, {"id": "6d3b671f-4a61-410c-824d-3ee6af5b180a", "name": "Dynadot", "tags": [], "issuers": [], "match_rules": [{"text": "Dynadot", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Dynadot", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8405fba4-a4c1-49bf-b7e9-87479e2d17e8", "name": "Dynadot", "icons": [{"id": "e48961bc-9d3f-46a5-b80f-32ce322d8a2a", "name": "Dynadot", "type": "light"}]}]}, {"id": "6d4ecb97-c1b7-4520-ac11-85d3d748f3b3", "name": "Azusa Pacific University", "tags": [], "issuers": [], "match_rules": [{"text": "APU", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "3a4351af-846d-4c0c-88d9-c084688ba401", "name": "Azusa Pacific University", "icons": [{"id": "0ddacfb0-9e8b-4c12-b10a-e73582a3d4a2", "name": "Azusa Pacific University", "type": "light"}]}]}, {"id": "6dadc18b-d1bc-44f9-a046-b72de56a0808", "name": "DNSFilter", "tags": [], "issuers": [], "match_rules": [{"text": "DNSFilter", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DNSFilter", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b700e46e-fdd7-44e7-a0eb-20d3f5228926", "name": "DNSFilter", "icons": [{"id": "358a491e-2ca9-4e60-ae27-bc99f040318f", "name": "DNSFilter", "type": "light"}]}]}, {"id": "6dc6c359-75a2-48ca-82e7-cf6ac8d98a68", "name": "Poloniex", "tags": [], "issuers": [], "match_rules": [{"text": "@poloniex.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bb70ee48-ae34-40c2-bf4c-e941ed9e04f1", "name": "Poloniex", "icons": [{"id": "32500ccd-44c1-4765-bc5c-735bd53e41e1", "name": "Poloniex", "type": "light"}, {"id": "4bf85c84-b49d-4503-8a7e-52ca2d68941b", "name": "Poloniex", "type": "dark"}]}]}, {"id": "6dd72222-a13a-480b-9f02-7137d5604ab3", "name": "Flourish", "tags": [], "issuers": [], "match_rules": [{"text": "Flourish", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Flourish", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8a5c7008-131a-495f-a8ca-71d775eb42b8", "name": "Flourish", "icons": [{"id": "d9c7e47a-dfed-400b-8cb9-cb9cb89e698e", "name": "Flourish", "type": "light"}]}]}, {"id": "6df2ae22-c09e-436a-9b4f-34f2b0e0f814", "name": "Uber Eats", "tags": [], "issuers": [], "match_rules": [{"text": "Uber Eats", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Uber Eats", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f2900828-1b1e-47ff-8a72-276f8e9a6e20", "name": "Uber Eats", "icons": [{"id": "9510008b-9a51-4168-b71e-4d6d7711517f", "name": "Uber Eats", "type": "light"}]}]}, {"id": "6dfb21f3-d658-47d8-9a36-0f3c4336de6b", "name": "Prey", "tags": [], "issuers": [], "match_rules": [{"text": "Prey", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Prey", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "404f2d53-f0a9-4420-ad92-0c7fcf23ffd7", "name": "Prey", "icons": [{"id": "b4a258ec-db23-4723-9560-40f75321aeb3", "name": "Prey", "type": "light"}, {"id": "e9d1f106-29dc-4018-906f-4e70fda82b21", "name": "prey", "type": "dark"}]}]}, {"id": "6e7521e9-5b52-44f0-b1c0-a3222edd1e7f", "name": "myPrimobox", "tags": [], "issuers": [], "match_rules": [{"text": "myPrimobox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "myPrimobox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c1351145-f405-44ef-809f-82e373c19653", "name": "myPrimobox", "icons": [{"id": "4ed9fd36-3f0a-4f05-bd83-97f41808b267", "name": "myPrimobox", "type": "light"}]}]}, {"id": "6ea011df-4a59-47a0-a839-3a4b94fee389", "name": "Demio", "tags": [], "issuers": [], "match_rules": [{"text": "Demio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Demio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9c7a591-2ab8-4b6f-9653-cee4370ba2ca", "name": "Demio", "icons": [{"id": "25ec0196-6726-4864-8a7e-2b10ea01c817", "name": "Demio", "type": "light"}]}]}, {"id": "6ec20803-2859-460a-9a76-939e9f092f08", "name": "Sellix", "tags": [], "issuers": [], "match_rules": [{"text": "Sellix", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sellix", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e1f5907e-b856-4e39-a4f4-4e6aea7cfbe4", "name": "Sellix", "icons": [{"id": "16bf5e40-f5ee-4c53-a19f-6599e8334860", "name": "Sellix", "type": "light"}, {"id": "47987d99-5c1a-4624-b4be-7cdaa1fd8859", "name": "Sellix", "type": "dark"}]}]}, {"id": "6eeab7e7-197d-47d1-a18f-7cada1793da4", "name": "Intercom", "tags": [], "issuers": ["Intercom"], "match_rules": null, "icons_collections": [{"id": "08148e29-ea43-456a-9cbb-25b40172428f", "name": "Intercom", "icons": [{"id": "57f062b1-3bc8-46de-9f75-59e8b8d798d3", "name": "Intercom", "type": "light"}, {"id": "5e4451df-6819-4160-9cf8-2bfd212451af", "name": "Intercom", "type": "dark"}]}]}, {"id": "6efd7b62-e065-4a91-aa32-0144f76b9a5b", "name": "Report URI", "tags": [], "issuers": [], "match_rules": [{"text": "Report URI", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Report URI", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "73754151-9afe-412d-937e-29f530fb6c69", "name": "Report URI", "icons": [{"id": "6a8a9bf3-3028-4602-a5a8-8a71343e3cc1", "name": "Report URI", "type": "light"}]}]}, {"id": "6f493f40-3c26-4cb0-a4ba-3563c91c38de", "name": "\u041f\u0430\u0447\u043a\u0430", "tags": [], "issuers": [], "match_rules": [{"text": "\u041f\u0430\u0447\u043a\u0430", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "\u041f\u0430\u0447\u043a\u0430", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5a9dbc0c-ed8c-445e-a5e1-1f55d21c6a33", "name": "\u041f\u0430\u0447\u043a\u0430", "icons": [{"id": "66c85bd7-cc79-47ba-97fd-e8c74f817c56", "name": "\u041f\u0430\u0447\u043a\u0430", "type": "dark"}, {"id": "90f7cbb3-52ed-4188-a573-20cb4b3e2c98", "name": "\u041f\u0430\u0447\u043a\u0430", "type": "light"}]}]}, {"id": "6fa66106-36f1-4dc1-aa1a-9bde97ee3756", "name": "Joyent", "tags": [], "issuers": [], "match_rules": [{"text": "Joyent", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Joyent", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d19f6bdb-9893-4cca-b71c-18e8eeeefb04", "name": "Joyent", "icons": [{"id": "b87d64b2-f16c-4e68-b06e-ad9827a920f9", "name": "Joyent", "type": "light"}]}]}, {"id": "6ff5d06a-2ebb-431c-8466-b1750c1b1aa8", "name": "SeatGeek", "tags": [], "issuers": [], "match_rules": [{"text": "SeatGeek", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SeatGeek", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "34b82477-092e-4699-89ff-f6ef734bbbe0", "name": "SeatGeek", "icons": [{"id": "5034c233-098f-42c0-bb95-d7020166cd66", "name": "SeatGeek", "type": "light"}]}]}, {"id": "7000b3fc-b371-4348-baea-9fc1da426f9d", "name": "Lichess", "tags": [], "issuers": ["lichess.org"], "match_rules": null, "icons_collections": [{"id": "a7262f92-f8f6-46e4-b0d8-e0a11b4c251e", "name": "Lichess", "icons": [{"id": "02c37dae-3a52-4a3a-9930-b6685834666e", "name": "Lichess", "type": "dark"}, {"id": "8df2eb41-2dcd-4867-bb2f-3f5075c953fd", "name": "Lichess", "type": "light"}]}]}, {"id": "7003a9bc-4b97-4dae-9d3c-0570b60d0c70", "name": "Hover", "tags": [], "issuers": ["Hover"], "match_rules": null, "icons_collections": [{"id": "a2533a1d-3f07-4f86-aae6-5555a35cce0b", "name": "Hover", "icons": [{"id": "08a4c8f7-1523-4791-abe7-d4ead4edcb44", "name": "Hover", "type": "light"}]}]}, {"id": "7014974d-2b62-4420-8240-b7a3b64e775c", "name": "Square", "tags": [], "issuers": [], "match_rules": [{"text": "Square", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Square", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "659a1800-4cfc-432b-a7b7-60a826cbb97b", "name": "Square", "icons": [{"id": "78f47fe8-0605-4f65-af58-4a300a074c21", "name": "Square", "type": "light"}, {"id": "d4f6e8ef-544e-4bdf-8838-64ef059ac70a", "name": "Square", "type": "dark"}]}]}, {"id": "702292df-58d9-4c69-807c-b3e62dfb942f", "name": "Metorik", "tags": [], "issuers": [], "match_rules": [{"text": "Metorik", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Metorik", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b8df9139-8ac4-40ee-a842-8b14b979e974", "name": "Metorik", "icons": [{"id": "150ca369-238c-472b-ad25-dbdb6dbec70d", "name": "Metorik", "type": "light"}]}]}, {"id": "70657302-3333-4f5b-8b12-4d61c6a0f141", "name": "Hostwinds", "tags": [], "issuers": [], "match_rules": [{"text": "Hostwinds", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hostwinds", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a4307423-93b2-4729-a594-9483b7974c4a", "name": "Hostwinds", "icons": [{"id": "4d3f0a6e-77fc-47ba-bed4-9fc9ce08dbc0", "name": "Hostwinds", "type": "light"}]}]}, {"id": "70a46ec0-3965-4138-89ce-c05555281cc8", "name": "Zoolz", "tags": [], "issuers": [], "match_rules": [{"text": "Zoolz", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Zoolz", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "341014c7-6cda-4fd8-a355-d4fa1c7ef7ae", "name": "Zoolz", "icons": [{"id": "c5801f06-a821-467f-a94b-8c8e36f33a78", "name": "Zoolz", "type": "light"}]}]}, {"id": "70dc642b-ed96-4bd4-89ec-9a18a6cf7e1f", "name": "Redis Enterprise Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "Redis Enterprise Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Redis Enterprise Cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d94215c9-ca7c-4306-9f49-aa5db850db2a", "name": "Redis Enterprise Cloud", "icons": [{"id": "0c1aa87c-b394-4c71-b49c-b702da34029f", "name": "Redis Enterprise Cloud", "type": "light"}]}]}, {"id": "71426a98-e772-416a-b691-0c5630aed184", "name": "ZAP-Hosting", "tags": [], "issuers": ["ZAP-Hosting"], "match_rules": null, "icons_collections": [{"id": "aadf5a54-895b-401d-8a2d-608d26f037bb", "name": "ZAP-Hosting", "icons": [{"id": "5e72201e-4a18-448c-a881-8e25ef3c6698", "name": "ZAP-Hosting", "type": "dark"}, {"id": "c492431d-1a51-4ad7-a000-c008e91d71af", "name": "ZAP-Hosting", "type": "light"}]}]}, {"id": "7143fd13-09a8-4256-9bef-b1055689a8b5", "name": "Neeva", "tags": [], "issuers": ["login.neeva.com"], "match_rules": null, "icons_collections": [{"id": "5d6912b0-60c3-4794-848c-a15eed8baa65", "name": "Neeva", "icons": [{"id": "b4f3be2d-9b1f-477d-9cbc-b51dee4c71ac", "name": "Neeva", "type": "light"}]}]}, {"id": "7167b7dc-8d8e-4053-9479-26d649ba05a5", "name": "ThreatConnect", "tags": [], "issuers": [], "match_rules": [{"text": "ThreatConnect", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ThreatConnect", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d83b6c20-fb9b-43dc-817f-56d9183de14d", "name": "ThreatConnect", "icons": [{"id": "70ea3a84-a760-4ad5-99d6-33612e145aba", "name": "ThreatConnect", "type": "light"}]}]}, {"id": "7179d190-041e-4cc9-bcef-c8a15c25384c", "name": "Philipps-Universit\u00e4t Marburg", "tags": [], "issuers": [], "match_rules": [{"text": "Philipps-Universit\u00e4t Marburg", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Philipps-Universit\u00e4t Marburg", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "13fcd46b-0788-418a-8a4c-d8aef91c40b8", "name": "Philipps-Universit\u00e4t Marburg", "icons": [{"id": "a0ea05dc-1f0d-4147-b5b9-79a8687b0923", "name": "Philipps-Universit\u00e4t Marburg", "type": "light"}, {"id": "d27f4295-fefa-44cd-a65a-afb7a49f59ea", "name": "Philipps-Universit\u00e4t Marburg", "type": "dark"}]}]}, {"id": "718fa787-bac4-498d-8447-15a6077789ef", "name": "IGN", "tags": [], "issuers": ["IGN.com"], "match_rules": null, "icons_collections": [{"id": "bbb28b1b-8430-4579-b1c2-ce49f9b16f84", "name": "IGN", "icons": [{"id": "2559f9be-763f-4558-b5e6-b89ee4ea44d8", "name": "IGN", "type": "light"}]}]}, {"id": "726e45b9-e811-428c-8be4-f52cfb810578", "name": "Synergy Wholesale", "tags": [], "issuers": [], "match_rules": [{"text": "Synergy Wholesale", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Synergy Wholesale", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d684c953-c5c7-4241-ad0b-631ea0d07242", "name": "Synergy Wholesale", "icons": [{"id": "6f2689fb-742f-4360-935f-7ccea778d212", "name": "Synergy Wholesale", "type": "light"}]}]}, {"id": "7282fe22-16c4-4102-ab7b-6960dea69951", "name": "SecurityTrails", "tags": [], "issuers": [], "match_rules": [{"text": "SecurityTrails", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SecurityTrails", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1aedea4a-554c-4193-a930-21e5425a7873", "name": "SecurityTrails", "icons": [{"id": "53d77377-a287-487b-a760-43e33c572043", "name": "SecurityTrails", "type": "light"}]}]}, {"id": "730f2dad-0d7d-4574-a714-bd0fb9292ba5", "name": "Fanatical", "tags": [], "issuers": [], "match_rules": [{"text": "Fanatical", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fanatical", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "38136b6d-cdff-44e5-9ff0-c1a478cca5e0", "name": "Fanatical", "icons": [{"id": "a34f5cb2-4946-4f59-9b74-a7ef87a82166", "name": "Fanatical", "type": "light"}]}]}, {"id": "734cb24b-5965-4544-8fda-54132b887e8c", "name": "Ramp", "tags": [], "issuers": [], "match_rules": [{"text": "Ramp", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Ramp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "83a5d693-864d-41ed-baf0-c366a3a53d9c", "name": "Ramp", "icons": [{"id": "62dfc34a-8b52-4ac7-95f4-f537ce4995af", "name": "Ramp", "type": "light"}]}]}, {"id": "73693d82-3dfd-4778-b6a4-359bd8b9e024", "name": "Survicate", "tags": [], "issuers": [], "match_rules": [{"text": "Survicate", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Survicate", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "af641748-6c97-4133-8248-390f34a90ec9", "name": "Survicate", "icons": [{"id": "cd5c6def-d788-4c44-ab63-98876d5be38c", "name": "Survicate", "type": "light"}, {"id": "dcc6987c-8966-4c53-b885-7e517f03dea3", "name": "Survicate", "type": "dark"}]}]}, {"id": "736e2aa2-aee3-46a0-bc69-e3377fd4cf83", "name": "Basecamp", "tags": [], "issuers": ["Basecamp's Launchpad"], "match_rules": null, "icons_collections": [{"id": "c343b6b4-3626-48f5-81c2-84033b5b48b5", "name": "Basecamp", "icons": [{"id": "3f94392f-130b-4ae0-825e-9546534d7f1e", "name": "Basecamp", "type": "dark"}, {"id": "777db411-7d2d-45ae-8bbb-2fa46454f9c6", "name": "Basecamp", "type": "light"}]}]}, {"id": "73ec635a-eaf4-4bef-99dd-4a7b154d8451", "name": "Iterable", "tags": [], "issuers": [], "match_rules": [{"text": "Iterable", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Iterable", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47a686d8-58ed-4bd8-a286-2c7a8c66f009", "name": "Iterable", "icons": [{"id": "55cac2a3-9cfc-4557-ad89-8963fe742820", "name": "Iterable", "type": "light"}]}]}, {"id": "7412393c-bc2b-4c7a-b21b-eb9f48673635", "name": "FollowMyHealth", "tags": [], "issuers": [], "match_rules": [{"text": "FollowMyHealth", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FollowMyHealth", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "94e5a921-26dd-4b78-8c78-4071f3fc745b", "name": "FollowMyHealth", "icons": [{"id": "66003ef7-373a-4acb-be38-e14458dfc055", "name": "FollowMyHealth", "type": "light"}]}]}, {"id": "743215a7-3115-4e48-a8f9-e87b103428ae", "name": "Unity", "tags": [], "issuers": ["id.unity.com"], "match_rules": [], "icons_collections": [{"id": "770731de-f13b-4d38-9079-999a869e6389", "name": "Unity", "icons": [{"id": "4accbf21-bda3-4678-b195-0eda4f189897", "name": "Unity", "type": "light"}, {"id": "ef8a7fe5-78f7-4b8f-b093-73f926238136", "name": "Unity", "type": "dark"}]}]}, {"id": "7432959f-6958-4529-8149-f6f071b3d21d", "name": "Nintendo", "tags": [], "issuers": ["Nintendo Account"], "match_rules": [], "icons_collections": [{"id": "3fc48e21-afbc-4a85-aa27-d07130d0c7f2", "name": "Nintendo Account", "icons": [{"id": "2ced9a41-3f26-4faf-909c-999a1598e061", "name": "Nintendo Account", "type": "light"}]}]}, {"id": "7433835d-c9d1-4074-8e84-a3aa33ac3994", "name": "Plaid", "tags": [], "issuers": [], "match_rules": [{"text": "Plaid", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Plaid", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9b47d1e8-9118-45eb-8c90-e2ea3b7b174e", "name": "Plaid", "icons": [{"id": "4ff1a75a-6003-483b-b49e-9b7cf8a1dc07", "name": "Plaid", "type": "light"}, {"id": "74901898-0763-41f0-9998-15a48405576b", "name": "Plaid", "type": "dark"}]}]}, {"id": "744e788d-3975-43ac-8166-0029c9a0871c", "name": "Facebook", "tags": ["fb"], "issuers": ["Facebook"], "match_rules": [], "icons_collections": [{"id": "2100a131-7869-4ca6-b476-f1fc0ef103bf", "name": "Facebook", "icons": [{"id": "639cb321-efe7-4888-995f-a289c97584e2", "name": "Facebook", "type": "light"}]}]}, {"id": "74771336-6bf1-4e7f-8331-3b59feec4710", "name": "Paycor", "tags": [], "issuers": [], "match_rules": [{"text": "Paycor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Paycor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f3b7bdd9-9f8e-4450-baf8-3a8ad24dc1a8", "name": "Paycor", "icons": [{"id": "62a09a3d-7e69-43f8-840c-9255b8344898", "name": "Paycor", "type": "light"}]}]}, {"id": "7540657a-7d4f-4abe-970c-a8267f68e92d", "name": "The Ohio State University", "tags": [], "issuers": [], "match_rules": [{"text": "The Ohio State University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "The Ohio State University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3c4e0dec-21fd-4a72-b9eb-8cdc12f9114c", "name": "The Ohio State University", "icons": [{"id": "1bad8e4a-8273-4713-94c3-9d4f50c9e165", "name": "The Ohio State University", "type": "light"}]}]}, {"id": "75dfe838-aa7e-4d36-9b40-eefb24c45407", "name": "Ukr.Net", "tags": [], "issuers": [], "match_rules": [{"text": "Ukr.Net", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Ukr.Net", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4ae2b7c2-0a3f-4b4d-8a74-8be8ce6c6c46", "name": "Ukr.Net", "icons": [{"id": "fb1a8ce1-a24c-4e77-adaf-f9107ab106ba", "name": "Ukr.Net", "type": "light"}]}]}, {"id": "7763054c-b3f6-41b9-9ebc-508e0aba3e27", "name": "Wasabi", "tags": [], "issuers": [], "match_rules": [{"text": "Wasabi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wasabi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cb2e0939-87c3-49b5-b727-3dea0f888149", "name": "Wasabi", "icons": [{"id": "803f1dbf-14ae-4545-b432-a516b7509cc5", "name": "Wasabi", "type": "light"}]}]}, {"id": "7773dceb-dfda-4ff7-8a43-f1e8b3f155b4", "name": "Joker.com", "tags": [], "issuers": [], "match_rules": [{"text": "Joker.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Joker.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "19a99019-e536-4afd-9308-178113c287b2", "name": "Joker.com", "icons": [{"id": "54088054-9a43-4f21-9801-fddc87cfc698", "name": "Joker.com", "type": "light"}]}]}, {"id": "77967bdd-6edc-4cd7-961f-acd8a1dd276a", "name": "BGL Corporate Solutions", "tags": [], "issuers": [], "match_rules": [{"text": "BGL Corporate Solutions", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BGL Corporate Solutions", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2415e851-d60b-42e2-8c3e-5e173f141329", "name": "BGL Corporate Solutions", "icons": [{"id": "2037cdd7-da9e-4537-9cbb-4379c762a435", "name": "BGL Corporate Solutions", "type": "dark"}, {"id": "3ef7f131-2931-4929-9ac3-f65199d34286", "name": "BGL Corporate Solutions", "type": "light"}]}]}, {"id": "783cd328-e505-426f-821b-e281fb8e9eda", "name": "Render", "tags": [], "issuers": ["render.com"], "match_rules": null, "icons_collections": [{"id": "20c994fc-bfc4-4ffa-a2ed-b469e03451f1", "name": "Render", "icons": [{"id": "584884ed-88c8-4a4d-bff2-91e105b21de7", "name": "Render", "type": "light"}]}]}, {"id": "784d131b-3688-40d5-a24f-39101716823a", "name": "AJ Bell Youinvest", "tags": [], "issuers": [], "match_rules": [{"text": "ajbell", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ajbell", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "aj bell", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "aj bell", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "youinvest", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "youinvest", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c132e76a-5792-4b93-9e4e-e6220adf5cc0", "name": "AJ Bell Youinvest", "icons": [{"id": "dfb05494-7a0d-4290-a405-94970b667f9d", "name": "AJ Bell Youinvest", "type": "light"}]}]}, {"id": "78651111-6963-4a5e-a5de-77fec9b16139", "name": "OpenDNS", "tags": [], "issuers": [], "match_rules": [{"text": "OpenDNS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OpenDNS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0653f8bb-4659-474c-b353-7003b85ee86d", "name": "OpenDNS", "icons": [{"id": "9f66cbeb-9214-4a82-9ac7-c12793cb2dc1", "name": "OpenDNS", "type": "light"}]}]}, {"id": "78ddee53-9480-4c1d-bc58-5983549c25e3", "name": "Time4VPS", "tags": [], "issuers": [], "match_rules": [{"text": "Time4VPS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Time4VPS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "04931659-0f20-42e6-b51b-6f31f6825210", "name": "Time4VPS", "icons": [{"id": "74e0b645-2e2d-4762-b2b6-1862b35b3c08", "name": "Time4VPS", "type": "light"}]}]}, {"id": "78e11f50-c9f2-457c-b7a1-7620d5f28ab9", "name": "Veracode", "tags": [], "issuers": [], "match_rules": [{"text": "Veracode", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Veracode", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7aecf7e7-fd85-49b4-8112-85e42e0e5370", "name": "Veracode", "icons": [{"id": "a6e94d31-1c27-45fc-a8f1-224b034c0e99", "name": "Veracode", "type": "light"}]}]}, {"id": "78e779cc-4926-4b0e-a58d-056d04acd8e9", "name": "Tito", "tags": [], "issuers": [], "match_rules": [{"text": "Tito", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tito", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "93491c63-eb9e-4bf0-9fcd-0181b1324329", "name": "Tito", "icons": [{"id": "05f54b46-015f-417d-835b-8945b84eba91", "name": "Tito", "type": "light"}]}]}, {"id": "79549405-ba55-4c7b-9d48-3b15002b5b30", "name": "EnZona", "tags": [], "issuers": ["ENZONA"], "match_rules": [], "icons_collections": [{"id": "d506bfdd-d5ca-4ab4-a4c1-960b445226f4", "name": "EnZona", "icons": [{"id": "4e622fc1-51cf-41b1-999a-5505ee178004", "name": "EnZona", "type": "light"}]}]}, {"id": "797d7590-b2db-4cb2-970a-b709282f9c7a", "name": "TryHackMe", "tags": [], "issuers": [], "match_rules": [{"text": "TryHackMe", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TryHackMe", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7d49fdc0-f3f8-486a-a7ed-8784c7566616", "name": "TryHackMe", "icons": [{"id": "3a6578c1-e96d-44a5-884e-b310a84e99c0", "name": "TryHackMe", "type": "light"}, {"id": "9a52a98c-61fa-4c75-814e-b847e93001b0", "name": "TryHackMe", "type": "dark"}]}]}, {"id": "79a770c9-d58a-4d10-8832-42e548430d1a", "name": "Chatwork", "tags": [], "issuers": [], "match_rules": [{"text": "Chatwork", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Chatwork", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "29798d06-c48d-4343-b844-c22a07e62ce3", "name": "Chatwork", "icons": [{"id": "3c0e89cb-f804-49cb-8009-9b0d8a8a2f1b", "name": "Chatwork", "type": "dark"}, {"id": "d9069a5a-6a5d-4125-8be9-e284f534f268", "name": "Chatwork", "type": "light"}]}]}, {"id": "79b01a50-6fcd-4b2f-8b18-cdfa989226fa", "name": "Capital.com", "tags": [], "issuers": ["Capital"], "match_rules": null, "icons_collections": [{"id": "74e8bf33-83d5-444d-8162-352de6f997b9", "name": "Capital.com", "icons": [{"id": "7d1c8bd3-3e4a-4752-8b9b-7f4394ea08a6", "name": "Capital.com", "type": "light"}]}]}, {"id": "79dd1346-06eb-4204-b8a8-ffc803f78ff7", "name": "APC", "tags": [], "issuers": [], "match_rules": [{"text": "APC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "APC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c46bbfa9-20ff-489c-a99e-cfaf2ba87b4e", "name": "APC", "icons": [{"id": "34049cb1-c970-4fd7-9be4-9d713d0ed2c5", "name": "APC", "type": "light"}]}]}, {"id": "79e9c420-16a7-406d-8a57-b904fea4edaf", "name": "Databox", "tags": [], "issuers": [], "match_rules": [{"text": "Databox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Databox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c498ff0b-4787-4fdd-b036-98e17f660479", "name": "Databox", "icons": [{"id": "4b74bb7b-a507-43c9-bec6-4971972e64e9", "name": "Databox", "type": "light"}]}]}, {"id": "7a3a1048-3b40-4118-bc07-842f1e7e4135", "name": "PayKassa", "tags": [], "issuers": [], "match_rules": [{"text": "PayKassa", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "PayKassa", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7a561902-afc2-4f28-a8d0-52bfa97557e7", "name": "PayKassa", "icons": [{"id": "1d0ad9f7-278e-4263-8638-40c3e5571b30", "name": "PayKassa", "type": "light"}]}]}, {"id": "7a57c8a2-5e90-4e8c-a431-1eee05627eda", "name": "ecobee", "tags": [], "issuers": [], "match_rules": [{"text": "ecobee", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d7ecaa85-888e-4cb0-9988-c1f736776cc1", "name": "ecobee", "icons": [{"id": "5065515e-995f-421c-b3db-da4135a3b8b9", "name": "ecobee", "type": "light"}]}]}, {"id": "7a6118e3-b7f5-4dd7-866c-b11292704df1", "name": "Keeper Security", "tags": [], "issuers": ["Keeper"], "match_rules": null, "icons_collections": [{"id": "e1c6aa97-cf83-4655-b32e-fda3d3594b27", "name": "Keeper Security", "icons": [{"id": "9e4ae53f-ebe6-4e0d-b883-22f374442680", "name": "Keeper Security", "type": "dark"}, {"id": "ceb99510-6253-4a8c-8f86-ecc5883e47c4", "name": "Keeper Security", "type": "light"}]}]}, {"id": "7a7c167a-1eb9-4733-85fa-6c1553ebce94", "name": "npm", "tags": [], "issuers": ["npm"], "match_rules": null, "icons_collections": [{"id": "b5d5a209-73c3-4a9f-ab39-16f8361a2513", "name": "npm", "icons": [{"id": "7c386fb0-e04a-4de7-9b74-5cf6fa479673", "name": "npm", "type": "light"}]}]}, {"id": "7a7ea44c-b7d3-4bfd-86c5-d8d9ae76fa8b", "name": "HashiCorp Vagrant Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "HashiCorp Vagrant Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HashiCorp Vagrant Cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c9da77bd-34c1-4097-92ca-1986f677f9d5", "name": "HashiCorp Vagrant Cloud", "icons": [{"id": "541c4d0e-09a1-41fd-9782-9b26314c46bc", "name": "HashiCorp Vagrant Cloud", "type": "light"}]}]}, {"id": "7a864a3b-356e-4d79-b316-10fa4facbda6", "name": "BnkToTheFuture", "tags": [], "issuers": [], "match_rules": [{"text": "BnkToTheFuture", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BnkToTheFuture", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2681b1e2-9748-4e8d-8367-d471b3f4bbea", "name": "BnkToTheFuture", "icons": [{"id": "9668661a-38e0-4ffc-9cfb-5f07f4e6a6db", "name": "BnkToTheFuture", "type": "light"}]}]}, {"id": "7afec234-26e4-43d6-97bc-ccb2024c180c", "name": "University of Colorado Boulder", "tags": [], "issuers": [], "match_rules": [{"text": "University of Colorado Boulder", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Colorado Boulder", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "60eda106-9a16-4e73-be93-54e83c878983", "name": "University of Colorado Boulder", "icons": [{"id": "e4e5a2b3-4454-462e-b72a-128ac6ba37ae", "name": "University of Colorado Boulder", "type": "light"}]}]}, {"id": "7b198b67-f1c5-495d-b294-5d28d3abf0e8", "name": "Kick", "tags": [], "issuers": ["kick"], "match_rules": null, "icons_collections": [{"id": "e78fb201-6932-4e6d-a4e5-01a42005822d", "name": "Kick", "icons": [{"id": "1504d34f-4232-43e1-ae39-774d740cae37", "name": "Kick", "type": "light"}]}]}, {"id": "7b5ae065-2d9e-47e3-8057-a4753de9c264", "name": "Airwallex", "tags": [], "issuers": ["Airwallex"], "match_rules": null, "icons_collections": [{"id": "e9d839d4-5912-48f4-9d10-55da53dae862", "name": "Airwallex", "icons": [{"id": "3e0af4e0-7050-4ba6-bafa-e5ec20a49b81", "name": "Airwallex", "type": "light"}]}]}, {"id": "7bd710ea-f376-48d8-ad1f-a0c02ecc3037", "name": "NeoGAF", "tags": [], "issuers": ["NeoGAF"], "match_rules": null, "icons_collections": [{"id": "50b56493-7d97-48bf-ae85-cafb69265fe5", "name": "NeoGAF", "icons": [{"id": "eeb15763-0cdb-4a15-8c01-2c5daaa71b2f", "name": "NeoGAF", "type": "light"}, {"id": "f55d6295-9186-4737-9efb-5de6242f65c7", "name": "NeoGAF", "type": "dark"}]}]}, {"id": "7c140d3e-d5c6-4b02-bf3f-b2361a9e5aeb", "name": "Codebase", "tags": ["atechmedia"], "issuers": [], "match_rules": [{"text": "Codebase", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Codebase", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "atechmedia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "36041399-3c58-4c4f-842f-9d65f2d25187", "name": "Codebase", "icons": [{"id": "40a43fb3-f6de-4153-a1c7-16b2c1345b3f", "name": "Codebase", "type": "light"}, {"id": "44557816-0187-413d-9ab4-a996d20e649b", "name": "Codebase", "type": "dark"}]}]}, {"id": "7c373102-9d13-489e-9baa-325903b550e5", "name": "NiceHash Buying", "tags": [], "issuers": ["NiceHash - buying"], "match_rules": [], "icons_collections": [{"id": "c8019718-56b2-406f-bf21-2addda6b21fd", "name": "NiceHash", "icons": [{"id": "cb0edba6-9027-49cc-b99d-1b31041e5073", "name": "NiceHash Buying", "type": "light"}]}]}, {"id": "7c839f74-7df8-4ea8-9e45-e9ad8ac37197", "name": "Jagex", "tags": [], "issuers": ["Jagex"], "match_rules": [], "icons_collections": [{"id": "bba6e836-305e-4ab5-b02e-40e8587a10d5", "name": "Jagex", "icons": [{"id": "61a569da-5b9c-439b-a439-ff06a4c2f24a", "name": "Jagex", "type": "light"}]}]}, {"id": "7c9f6330-0a27-4367-8607-52d39b582559", "name": "RealVNC", "tags": [], "issuers": [], "match_rules": [{"text": "RealVNC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RealVNC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "be585f09-751c-4874-a428-43cc0279c7f0", "name": "RealVNC", "icons": [{"id": "915b5cc0-f98f-440c-a6a5-039351640572", "name": "RealVNC", "type": "light"}]}]}, {"id": "7cde0945-9fea-4acc-9a35-58086a5379cc", "name": "SocketLabs", "tags": [], "issuers": [], "match_rules": [{"text": "SocketLabs", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SocketLabs", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cf7bdab2-c559-4eb3-8c1b-6d4fa3f68623", "name": "SocketLabs", "icons": [{"id": "cc712b8c-d35e-4f51-8052-ea382faf73ab", "name": "SocketLabs", "type": "light"}]}]}, {"id": "7cea4661-c2da-4a71-aad2-9a3a0f236455", "name": "SentinelOne", "tags": [], "issuers": ["SentinelOne"], "match_rules": null, "icons_collections": [{"id": "365045b9-7d72-4dbc-a6b0-95505891e195", "name": "SentinelOne", "icons": [{"id": "021bf62b-2a69-404c-839c-389e0b5539fd", "name": "SentinelOne", "type": "light"}]}]}, {"id": "7cf2db15-6995-4629-a586-05cf8022c5e4", "name": "Gatehub", "tags": [], "issuers": [], "match_rules": [{"text": "Gatehub", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Gatehub", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b8e9d5df-6831-44b5-92b4-154ff2a66538", "name": "Gatehub", "icons": [{"id": "d0707a53-cabc-48a7-b252-add846231c2d", "name": "Gatehub", "type": "light"}]}]}, {"id": "7d012425-7019-4320-90a5-38963e4a022e", "name": "Brave", "tags": [], "issuers": ["Brave+Rewards", "Brave Rewards", "Brave Community", "Brave+Community"], "match_rules": [], "icons_collections": [{"id": "e4e7da2f-3d8b-4686-8c2c-fd94a23864ad", "name": "Brave", "icons": [{"id": "c0d07326-5451-4ed1-8897-6b077e1bbfc1", "name": "Brave", "type": "light"}]}]}, {"id": "7d0557e5-9456-441f-ba61-32d903b6db10", "name": "Control D", "tags": [], "issuers": [" ControlD"], "match_rules": [], "icons_collections": [{"id": "e6f3c3a8-b42a-45c0-9ec4-c7af77b6509b", "name": "Control D", "icons": [{"id": "1f69f5b2-11c5-47e3-9910-78c3a2da794f", "name": "Control D", "type": "light"}, {"id": "4332ab89-25d6-4efb-be0b-cf70d6c3bc19", "name": "Control D", "type": "dark"}]}]}, {"id": "7d186ccb-3417-4849-bfab-763d8a89aa10", "name": "Bill", "tags": [], "issuers": [], "match_rules": [{"text": "Bill", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bill", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "04c5dd16-8c1d-4f7a-96dc-a83fb398f7d3", "name": "Bill", "icons": [{"id": "7ab34c51-56e3-4ac6-a477-e48ffd2ed495", "name": "Bill", "type": "light"}]}]}, {"id": "7d63ffe6-7804-435f-88fc-0adb0e159d06", "name": "Sisense Cloud Data Teams", "tags": [], "issuers": [], "match_rules": [{"text": "Sisense", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sisense", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "PeriscopeData", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e8ab1466-8aa3-46a2-8f20-ab2c32ea3c3a", "name": "Sisense Cloud Data Teams", "icons": [{"id": "4153cae5-bf0e-49e2-906d-842d41d067f5", "name": "Sisense Cloud Data Teams", "type": "light"}, {"id": "62faa412-f3c9-4710-8a8b-f7b1e8dec6a4", "name": "Sisense", "type": "dark"}]}]}, {"id": "7d64fc42-384f-44b8-b4cb-a017aff60ae2", "name": "Cronometer", "tags": [], "issuers": [], "match_rules": [{"text": "Cronometer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cronometer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6debb665-618e-4aca-8b2a-8de9689c8556", "name": "Cronometer", "icons": [{"id": "ebc79151-59fe-468b-b689-c9dac30658a0", "name": "Cronometer", "type": "light"}]}]}, {"id": "7d6c3db8-9ca5-4af5-99b5-1647ed525020", "name": "HostUS", "tags": [], "issuers": [], "match_rules": [{"text": "HostUS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HostUS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "360d761b-6082-4c15-9370-822183a0d228", "name": "HostUS", "icons": [{"id": "0963508d-8cb0-4d58-abb9-93d8b8c7fc49", "name": "HostUS", "type": "light"}, {"id": "11f24086-3812-48d9-b429-2cc783af7fc0", "name": "HostUS", "type": "dark"}]}]}, {"id": "7dc0cb8a-5b3d-43b7-8100-fc402521260c", "name": "Baremetrics", "tags": [], "issuers": [], "match_rules": [{"text": "Baremetrics", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Baremetrics", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "488b76e6-fe7a-4819-8341-94b3afa0ea35", "name": "Baremetrics", "icons": [{"id": "fbf9004b-b4a8-43ed-b0a9-9dc5b9127f46", "name": "Baremetrics", "type": "light"}]}]}, {"id": "7dd75bc6-36a8-4abb-b4cc-ea0c565039ef", "name": "DMARC Analyzer", "tags": [], "issuers": [], "match_rules": [{"text": "DMARC Analyzer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DMARC Analyzer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "70a19f89-28f6-4a5b-b10c-91639e7be36f", "name": "DMARC Analyzer", "icons": [{"id": "50aba6c7-d2c0-426a-968e-292c4280f856", "name": "DMARC Analyzer", "type": "light"}]}]}, {"id": "7dfa2136-3dcb-4b38-9038-7e7a39612fc3", "name": "Sync", "tags": [], "issuers": ["Sync"], "match_rules": null, "icons_collections": [{"id": "3aa1b5aa-0f1d-41a1-8ce2-a3e76741ebb8", "name": "Sync", "icons": [{"id": "348d6ba7-61e5-4247-a0d3-1a471e65fea2", "name": "Sync", "type": "light"}, {"id": "b6e826a6-807c-4259-b788-44fbd238e347", "name": "Sync", "type": "dark"}]}]}, {"id": "7e3248ab-9cc7-4213-8e46-db814bcd98b7", "name": "Squarespace", "tags": [], "issuers": ["Squarespace"], "match_rules": null, "icons_collections": [{"id": "614e0e97-27e3-4db2-9f6b-34d6027fa9d2", "name": "Squarespace", "icons": [{"id": "181d343a-a7fc-49f1-a34c-9c9c91052b04", "name": "Squarespace", "type": "light"}, {"id": "f29a4de6-572b-400b-acb2-76252c497189", "name": "Squarespace", "type": "dark"}]}]}, {"id": "7e827a70-d3ce-4f09-9ce0-0b5dc5df12de", "name": "Ravelin", "tags": [], "issuers": [], "match_rules": [{"text": "Ravelin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Ravelin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "93d26a7d-efa2-477d-a995-7a78702b2836", "name": "Ravelin", "icons": [{"id": "c7dc845d-6bc1-417a-8837-b4c80ac260c8", "name": "Ravelin", "type": "light"}]}]}, {"id": "7e92bf90-bc72-4554-a2f4-149f3bb68d84", "name": "Visual Studio Codespaces", "tags": [], "issuers": [], "match_rules": [{"text": "Visual Studio Codespaces", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Visual Studio Codespaces", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "481fc356-0c8d-4f57-ac44-3ec23338a726", "name": "Visual Studio Codespaces", "icons": [{"id": "4408364f-21ef-4554-9b2e-3504be5acd13", "name": "Visual Studio Codespaces", "type": "light"}]}]}, {"id": "7ea96de6-94c4-47ab-b9e0-6c96975104ca", "name": "Talkdesk", "tags": [], "issuers": [], "match_rules": [{"text": "Talkdesk", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Talkdesk", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dc95d230-017f-4f27-af4d-9916cc0c6eba", "name": "Talkdesk", "icons": [{"id": "edee15bf-fe77-4271-9e6a-ebfc6929ca08", "name": "Talkdesk", "type": "light"}]}]}, {"id": "7ec6284a-152f-4ac6-a702-95a21bfb7e02", "name": "IFTTT", "tags": [], "issuers": ["IFTTT"], "match_rules": [], "icons_collections": [{"id": "c5879187-e23d-4700-93f3-a6f868acabac", "name": "IFTTT", "icons": [{"id": "9bf53643-6851-4ff7-8813-42e13ffd310a", "name": "IFTTT", "type": "dark"}, {"id": "a474e176-b524-4f47-9136-8d5bbe082360", "name": "IFTTT", "type": "light"}]}]}, {"id": "7ecdd454-63e2-4bd1-88be-84c968d6042a", "name": "Morgan Stanley", "tags": [], "issuers": [], "match_rules": [{"text": "Morgan Stanley", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Morgan Stanley", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "51790ef4-c45a-44de-b604-babac395b878", "name": "Morgan Stanley", "icons": [{"id": "15b7ff37-5678-4ce9-b62d-0465c78c89f2", "name": "Morgan Stanley", "type": "light"}, {"id": "de2f99f1-c9eb-48ab-b6dc-8ecdacbab49f", "name": "Morgan Stanley", "type": "dark"}]}]}, {"id": "7edd95cf-a6c3-4a4e-8d9b-90c94de52e52", "name": "Codeberg", "tags": [], "issuers": [], "match_rules": [{"text": "Codeberg", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Codeberg", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5b504195-1fab-40ad-9892-3b90a4d94cdd", "name": "Codeberg", "icons": [{"id": "8657ab51-a796-4bd1-91b9-ade6d53c4353", "name": "Codeberg", "type": "light"}]}]}, {"id": "7f0cfb06-f9c4-4618-926c-924071e92d73", "name": "Buda", "tags": [], "issuers": [], "match_rules": [{"text": "Buda", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Buda", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8cfa9803-beaa-4adc-a75a-e676f8219adb", "name": "Buda", "icons": [{"id": "ac1264c5-a44d-4490-8abd-4f06f7e42c78", "name": "Buda", "type": "light"}]}]}, {"id": "7f1b59e5-fd1d-4e2f-a6c3-c38c44c53c6e", "name": "Digital Ocean", "tags": [], "issuers": ["DigitalOcean"], "match_rules": [], "icons_collections": [{"id": "bedb3c09-c11e-4a34-9c30-1855a5b546b8", "name": "Digital Ocean", "icons": [{"id": "d118a635-ecff-4245-8efa-a16ed0e2968c", "name": "Digital Ocean", "type": "light"}]}]}, {"id": "7f5aa6ce-925c-460f-baea-93e027f77fe4", "name": "Coinberry", "tags": [], "issuers": [], "match_rules": [{"text": "Coinberry", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinberry", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "210b98a2-2efc-4562-986c-b50a7cc7c29a", "name": "Coinberry", "icons": [{"id": "90ab9d93-86bc-44eb-874f-25d701505270", "name": "Coinberry", "type": "light"}]}]}, {"id": "7fb255db-eb65-44cd-9ce3-5e62ea0ccbb4", "name": "Cloud Panel", "tags": [], "issuers": ["CloudPanel"], "match_rules": null, "icons_collections": [{"id": "ce893d40-34ce-444b-afb9-bcf51ef8ed25", "name": "Cloud Panel", "icons": [{"id": "e872de3c-ba73-4838-86a3-c018d6019829", "name": "Cloud Panel", "type": "light"}]}]}, {"id": "7fc06c13-d09b-40da-a740-099cc0743da8", "name": "Help Scout", "tags": [], "issuers": ["Help Scout"], "match_rules": null, "icons_collections": [{"id": "dbedb8f2-02a7-48c5-a41f-a009b989430c", "name": "Help Scout", "icons": [{"id": "0f8ca18e-d6d4-4547-8e5d-2c024fd1bf90", "name": "Help Scout", "type": "light"}]}]}, {"id": "7fed7497-7f8c-47b3-80a7-bb11ee7297f3", "name": "Dyn", "tags": [], "issuers": [], "match_rules": [{"text": "Dyn", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Dyn", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "00f64f47-9c10-4646-ae64-1199abac1727", "name": "Dyn", "icons": [{"id": "85acdb86-d335-4d68-911d-85b685a8e9dd", "name": "Dyn", "type": "light"}]}]}, {"id": "8003377c-5f86-441f-9ca7-0865d55a4efe", "name": "LIHKG", "tags": [], "issuers": [], "match_rules": [{"text": "LIHKG", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LIHKG", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "acb4f3cf-ded5-4cd4-a351-e233e7f938ba", "name": "LIHKG", "icons": [{"id": "0f892a23-6086-4f25-9c46-cfe94d6d6376", "name": "LIHKG", "type": "light"}]}]}, {"id": "802b7e13-9f6c-4546-b188-38b7ade15b67", "name": "Unstoppable Domains", "tags": [], "issuers": ["unstoppabledomains.com"], "match_rules": null, "icons_collections": [{"id": "07a242e2-8f53-4a02-86d2-bd3d1589f0bc", "name": "Unstoppable Domains", "icons": [{"id": "8cc53f9a-5965-4cd3-a466-816474270fb0", "name": "Unstoppable Domains", "type": "light"}]}]}, {"id": "80f023af-b7e2-4395-a700-769bf968dcf6", "name": "JetBrains", "tags": [], "issuers": ["JetBrains+Account", "JetBrains Account"], "match_rules": [], "icons_collections": [{"id": "2143b701-156b-4d92-919f-00fa12423913", "name": "JetBrains", "icons": [{"id": "18848da5-dfa6-4b4b-8a3b-d5dc3f7582b7", "name": "JetBrains", "type": "light"}]}]}, {"id": "80ffdc39-f0ba-40a1-826a-0afb5084f8a0", "name": "Ubiquiti", "tags": [], "issuers": [], "match_rules": [{"text": "Ubiquiti", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d4933ce4-1942-416a-aea0-97e802b741cc", "name": "Ubiquiti", "icons": [{"id": "0b2c56d8-6e97-4725-bd03-0de05d9fa00f", "name": "Ubiquiti", "type": "light"}]}]}, {"id": "81243ec1-475c-4d34-960c-18ab2ea3f112", "name": "CoinTracker", "tags": [], "issuers": ["CoinTracker"], "match_rules": null, "icons_collections": [{"id": "16a18da2-f83a-4af4-989d-bef141971c43", "name": "CoinTracker", "icons": [{"id": "35819712-7fae-4426-8fe9-d718da5a11e2", "name": "CoinTracker", "type": "light"}]}]}, {"id": "81893f05-1e77-4928-961d-7d14886c43df", "name": "Spotify", "tags": [], "issuers": ["Spotify"], "match_rules": null, "icons_collections": [{"id": "d3a469ca-8067-4e22-a044-96f15a12b5c1", "name": "Spotify", "icons": [{"id": "8bd9332b-3931-44c4-9739-80655c12a307", "name": "Spotify", "type": "light"}]}]}, {"id": "81ca01bd-b056-4693-a02f-c013e3b2a3fa", "name": "Perimeter 81", "tags": [], "issuers": [], "match_rules": [{"text": "Perimeter 81", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Perimeter 81", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7065a988-32ff-4ef1-8f0e-3753ced7b739", "name": "Perimeter 81", "icons": [{"id": "925337f6-e55e-404c-8eba-e09089275fe2", "name": "Perimeter 81", "type": "light"}]}]}, {"id": "81d7ca73-6785-49ec-aa3c-e2a6335a3e62", "name": "Bitstamp", "tags": [], "issuers": [], "match_rules": [{"text": "Bitstamp", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitstamp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "04052a42-41de-4c1a-95c1-d4ec0867a849", "name": "Bitstamp", "icons": [{"id": "c9483b0c-3d30-47e3-935f-8014e41797a7", "name": "Bitstamp", "type": "dark"}, {"id": "d3585c19-57fc-4db5-b38e-e14b7662c8f0", "name": "Bitstamp", "type": "light"}]}]}, {"id": "8238cd36-074e-4dae-8fc5-c808a6c5f7b2", "name": "Rewind", "tags": [], "issuers": [], "match_rules": [{"text": "Rewind", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rewind", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d5fb7ff7-df36-419a-bf2d-3735594ae27a", "name": "Rewind", "icons": [{"id": "cfe77fa6-c42f-42ae-bae2-b7fb8c349afa", "name": "Rewind", "type": "light"}]}]}, {"id": "82577edc-f9b1-4b6f-9fb8-c242a35e2408", "name": "HS Fulda", "tags": ["Hochschule", "fulda"], "issuers": ["horstl"], "match_rules": null, "icons_collections": [{"id": "ec2df1ec-7b6e-4bb7-a220-37dcca841030", "name": "HS Fulda", "icons": [{"id": "ad5644f5-fae6-4bc9-83b5-542dda9f8f2d", "name": "HS Fulda", "type": "light"}]}]}, {"id": "8294b3ae-906d-48bb-8755-17a1b86cd306", "name": "Refersion", "tags": [], "issuers": [], "match_rules": [{"text": "Refersion", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Refersion", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "83088ecb-4abc-4f2f-a57f-189b43654925", "name": "Refersion", "icons": [{"id": "800ce669-a9f2-48cf-86e9-91d4e1516fbd", "name": "Refersion", "type": "light"}]}]}, {"id": "82adeede-e575-4c1b-a926-39fb6a00d1f2", "name": "RamNode", "tags": [], "issuers": [], "match_rules": [{"text": "RamNode", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RamNode", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "28ebd542-dd92-4ad7-92f6-c25242baa90b", "name": "RamNode", "icons": [{"id": "f856abb4-57ea-4525-b21d-29e4ced7ef53", "name": "RamNode", "type": "light"}]}]}, {"id": "82bb2fa6-a87a-4894-9717-b1d521dbd6b1", "name": "MB Connect Line", "tags": [], "issuers": [], "match_rules": [{"text": "MB Connect Line", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "MB Connect Line", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c8208957-94df-4511-8f53-4500ec1336ed", "name": "MB Connect Line", "icons": [{"id": "51d796c1-b94d-4631-a89c-7b40e939030c", "name": "MB Connect Line", "type": "light"}]}]}, {"id": "82c10485-6384-4ef9-9d41-f19fab950b6b", "name": "Rocket Beans TV", "tags": [], "issuers": [], "match_rules": [{"text": "Rocket Beans TV", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rocket Beans TV", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7a3b7a57-3ef8-46a0-b8ba-70bc43e14329", "name": "Rocket Beans TV", "icons": [{"id": "05d8f0a8-5e3e-452b-baf5-65365547ec21", "name": "Rocket Beans TV", "type": "light"}]}]}, {"id": "82d90864-a1f7-4cb1-b258-e610ebfeb13f", "name": "SpaceHey", "tags": [], "issuers": ["SpaceHey"], "match_rules": null, "icons_collections": [{"id": "98cec66b-0047-4a4f-b948-dfaa94005891", "name": "SpaceHey", "icons": [{"id": "49406425-ac03-435f-a742-249114653c37", "name": "SpaceHey", "type": "light"}, {"id": "545b2113-4baf-454f-b310-802c00a95c70", "name": "SpaceHey", "type": "dark"}]}]}, {"id": "82dffa18-98ab-469b-a585-0f5ed9990b9b", "name": "NVIDIA", "tags": ["GeForce"], "issuers": ["NVIDIA"], "match_rules": [], "icons_collections": [{"id": "8b295bb2-91cc-4f19-b173-16df95e228c3", "name": "NVIDIA", "icons": [{"id": "0bbbed37-d57a-4498-9bfd-4ee474921ba0", "name": "NVIDIA", "type": "light"}]}]}, {"id": "82fd1bfe-64cf-446d-acea-5876d821c5d0", "name": "Open Collective", "tags": [], "issuers": ["Open Collective"], "match_rules": null, "icons_collections": [{"id": "15a8549b-2ac7-497e-a6ae-11378ae18119", "name": "Open Collective", "icons": [{"id": "e8a2d6ef-e116-4347-9491-24df09531603", "name": "Open Collective", "type": "dark"}, {"id": "ec042aca-7646-43dc-960b-b29580d51192", "name": "Open Collective", "type": "light"}]}]}, {"id": "830020a7-2513-488c-8a7c-7e20aa9578d2", "name": "Alterdice", "tags": [], "issuers": [], "match_rules": [{"text": "Alterdice", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Alterdice", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cd165431-53b8-4936-b8ea-cbd8fa1e8c96", "name": "Alterdice", "icons": [{"id": "8a0a282e-aef4-4c98-a7a2-5bb5dc05e80b", "name": "Alterdice", "type": "light"}]}]}, {"id": "8393c2bd-d496-4432-890d-a7477f176e08", "name": "CoinRemitter", "tags": [], "issuers": [], "match_rules": [{"text": "CoinRemitter", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinRemitter", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9e1ed47-e280-4ba5-a00c-4d017a124d78", "name": "CoinRemitter", "icons": [{"id": "67213700-6251-4459-8154-dfa8174ca1af", "name": "CoinRemitter", "type": "light"}]}]}, {"id": "83a6df63-b742-4675-afda-9d230c192e10", "name": "Frontify", "tags": [], "issuers": [], "match_rules": [{"text": "Frontify", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Frontify", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d5a42783-5007-453d-b27c-18bede240cea", "name": "Frontify", "icons": [{"id": "7a96c6a8-6e78-46c3-a100-53ffccb78606", "name": "Frontify", "type": "light"}, {"id": "f0659a7c-09fd-4bad-9a7e-355e4faee0d5", "name": "Frontify", "type": "dark"}]}]}, {"id": "840d21e0-d20d-4067-b6c7-2b96aae85579", "name": "Docusign", "tags": [], "issuers": [], "match_rules": [{"text": "Docusign", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Docusign", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6c5884c0-7c72-4c2b-896d-3481cff57cc8", "name": "Docusign", "icons": [{"id": "0ef7b215-4b57-4ab7-b39a-64b1765fba51", "name": "Docusign", "type": "light"}]}]}, {"id": "84662035-1e65-4cde-9741-efb1e83a5ef2", "name": "Unleashed Inventory", "tags": [], "issuers": [], "match_rules": [{"text": "Unleashed Inventory", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Unleashed Inventory", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "305b1e9c-2fd3-4b84-b302-8c1bec2138a9", "name": "Unleashed Inventory", "icons": [{"id": "cc3da4f5-a306-4441-a63a-3246f746ad26", "name": "Unleashed Inventory", "type": "light"}]}]}, {"id": "84edaeaf-9168-45ff-96d9-003228d3dd8c", "name": "Formstack", "tags": [], "issuers": [], "match_rules": [{"text": "Formstack", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Formstack", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "785c2b05-b748-468d-a125-241260f12ac8", "name": "Formstack", "icons": [{"id": "6bf58290-7e80-4448-8671-1ad7fb975a38", "name": "Formstack", "type": "light"}]}]}, {"id": "84f63808-cfb8-4ae5-a830-e6f70ab02dae", "name": "EuroDNS", "tags": [], "issuers": [], "match_rules": [{"text": "EuroDNS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "EuroDNS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "98fefb13-beb0-4e1c-b2d3-e6acc0ec5aec", "name": "EuroDNS", "icons": [{"id": "8f4a791e-e87a-4cd0-bcbb-a2f6f6b830ec", "name": "EuroDNS", "type": "light"}]}]}, {"id": "85296295-6a06-4e0c-bd60-937c805a6c1f", "name": "HashiCorp Cloud Platform", "tags": [], "issuers": [], "match_rules": [{"text": "hashicorp-cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "hashicorp-cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dc569788-3def-4fbc-8238-f5bc61084a5b", "name": "HashiCorp Cloud Platform", "icons": [{"id": "79d2282f-3d34-4733-ac7c-a40d01151343", "name": "HashiCorp Cloud Platform", "type": "light"}, {"id": "da447d71-ac7a-4647-b1f9-4e1b28f3b3db", "name": "HashiCorp", "type": "dark"}]}]}, {"id": "8545bf3b-1bbe-4ecb-a623-cfdfe5f3fc38", "name": "Firefox", "tags": [], "issuers": ["Firefox"], "match_rules": [], "icons_collections": [{"id": "abe5ddb6-80c8-4b31-8fbb-345e0d81160b", "name": "Firefox", "icons": [{"id": "fedc897a-14e8-4a8d-9b33-d31c67d40d3c", "name": "Firefox", "type": "light"}]}]}, {"id": "85ad45be-da07-4b6d-b373-8acbe7148c37", "name": "Buffer", "tags": [], "issuers": ["Buffer"], "match_rules": [], "icons_collections": [{"id": "2c9ee610-c4d6-4457-8834-f7c538a7f163", "name": "Buffer", "icons": [{"id": "8488c7e4-328f-4efa-84d5-a454dc9faf48", "name": "Buffer", "type": "light"}, {"id": "e5d7b169-31bd-451d-b7b5-78d8822e2508", "name": "Buffer", "type": "dark"}]}]}, {"id": "86006813-ee18-4ae6-a87b-5347820b0519", "name": "SeaTable", "tags": [], "issuers": ["seatable.io"], "match_rules": null, "icons_collections": [{"id": "028279c4-92e4-47d1-ac5d-66e1618bd244", "name": "SeaTable", "icons": [{"id": "cc398ee5-2178-42e6-9e72-957d80733a9e", "name": "SeaTable", "type": "light"}]}]}, {"id": "86865881-b1cc-49af-bed1-cbd05d9fadde", "name": "Binary Fortress Software", "tags": [], "issuers": [], "match_rules": [{"text": "Binary Fortress Software", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Binary Fortress Software", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Binary(\\+|\\s|-|_)Fortress(\\+|\\s|-|_)Software", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Binary(\\+|\\s|-|_)Fortress(\\+|\\s|-|_)Software", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "86633fb6-7758-4a7d-9b84-4e9879297227", "name": "Binary Fortress Software", "icons": [{"id": "e6448330-d612-47c3-b4e6-bb16e73abf64", "name": "Binary Fortress Software", "type": "light"}]}]}, {"id": "868894d6-32e4-45ec-9c9e-10d8806c76f3", "name": "Veem", "tags": [], "issuers": [], "match_rules": [{"text": "Veem", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Veem", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2093372c-4f33-4cb3-8133-b8f1ca9e098e", "name": "Veem", "icons": [{"id": "f92bcf0a-829e-4aff-8ded-0a9d486818ce", "name": "Veem", "type": "light"}]}]}, {"id": "868f0d51-8916-4807-acc0-8d4ee45f7db1", "name": "Hostiso", "tags": [], "issuers": [], "match_rules": [{"text": "Hostiso", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hostiso", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fbd1485b-ca8c-41e7-92e1-7ef469b99e93", "name": "Hostiso", "icons": [{"id": "3729271e-0304-431f-aef5-839609176f59", "name": "Hostiso", "type": "light"}]}]}, {"id": "8698b2b9-a7e0-4bc7-8ffe-ad28ee0f7f08", "name": "IBM Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "IBM Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IBM Cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7d447f66-7e02-428b-9e36-68f7c958580c", "name": "IBM Cloud", "icons": [{"id": "4d2f5e46-a77d-43b2-9781-bb700b0b6a48", "name": "IBM Cloud", "type": "light"}, {"id": "d5cd7480-5b93-4379-92f9-3d4ba2e9753b", "name": "IBM Cloud", "type": "dark"}]}]}, {"id": "87243aa3-1fa8-4263-b6b1-dc4659bb5aef", "name": "GM", "tags": [], "issuers": ["General Motors Security Team"], "match_rules": null, "icons_collections": [{"id": "a2b78d57-46c7-49f9-9d28-0f3c58e35be5", "name": "GM", "icons": [{"id": "bed8c104-379f-4eda-9908-985557afff4e", "name": "GM", "type": "light"}, {"id": "f9f105ad-4fef-418d-940f-dd21d2116db0", "name": "GM", "type": "dark"}]}]}, {"id": "873024ad-7ff9-4c17-b359-d741b8e6bbd5", "name": "Ripe NCC", "tags": [], "issuers": [], "match_rules": [{"text": "Ripe NCC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Ripe NCC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0dd85aeb-012f-4d86-9ec5-80789ef60055", "name": "Ripe NCC", "icons": [{"id": "1a9ed1cd-0cfd-48b1-b01f-5147b789f6c0", "name": "Ripe NCC", "type": "light"}, {"id": "3090fc32-b6bb-4a48-861f-62ad313f459c", "name": "Ripe NCC", "type": "dark"}]}]}, {"id": "87628e28-8d71-4d26-9a81-84da98f3c128", "name": "Wise", "tags": [], "issuers": ["Wise"], "match_rules": null, "icons_collections": [{"id": "b489e126-7964-4d8f-b3b9-8fc5e740710d", "name": "Wise", "icons": [{"id": "abfea0a1-749f-484c-88b8-f67470a08e5f", "name": "Wise", "type": "dark"}, {"id": "fddee495-a28d-47dc-9499-158ba1909d0e", "name": "Wise", "type": "light"}]}]}, {"id": "87b50366-eebf-4f21-a268-1a1758e33c13", "name": "StubHub", "tags": [], "issuers": [], "match_rules": [{"text": "StubHub", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StubHub", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3156e052-2c4a-409f-969f-3b2a0a8dea23", "name": "StubHub", "icons": [{"id": "9628ce88-d83d-4728-8fe3-596b599852cf", "name": "StubHub", "type": "light"}]}]}, {"id": "881e237f-37a2-41e7-87ef-9c21684618f3", "name": "AutoTask", "tags": [], "issuers": [], "match_rules": [{"text": "AutoTask", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AutoTask", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7d8c75ff-a63e-49fd-b225-e3290549f4ed", "name": "AutoTask", "icons": [{"id": "aa895fdb-16d5-43eb-b633-5fa12a98afe9", "name": "AutoTask", "type": "light"}]}]}, {"id": "882c9046-b11f-4f4f-9f66-7095202a03a7", "name": "RoboForm", "tags": [], "issuers": ["RoboForm"], "match_rules": [], "icons_collections": [{"id": "b541b6bb-1921-418b-91c8-ad911062b736", "name": "RoboForm", "icons": [{"id": "0677ef34-0387-4229-9e40-80f69d497476", "name": "RoboForm", "type": "light"}]}]}, {"id": "882c9d00-fbd8-48b7-930d-41f503966a4f", "name": "Zimbra", "tags": [], "issuers": [], "match_rules": [{"text": "Zimbra", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Zimbra", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "884cf569-fb14-4c47-828c-2f9f88377cb7", "name": "Zimbra", "icons": [{"id": "023f72a8-c86b-412c-a362-c460ab9e9bb0", "name": "Zimbra", "type": "light"}]}]}, {"id": "886b5652-ad19-4f60-ae39-b5fa1a540794", "name": "UW Credit Union", "tags": [], "issuers": [], "match_rules": [{"text": "UW Credit Union", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "UW Credit Union", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "732e06ef-1bc9-48dc-9cd7-4f0ee9b0d1d4", "name": "UW Credit Union", "icons": [{"id": "f6525b68-2767-4958-b322-3a50066586ea", "name": "UW Credit Union", "type": "light"}]}]}, {"id": "889bb777-71ee-45d8-9c95-4253eee6bb89", "name": "BKEX", "tags": [], "issuers": [], "match_rules": [{"text": "BKEX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BKEX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c167c7d1-eaa7-4578-ab63-1541330a3137", "name": "BKEX", "icons": [{"id": "ab12aadb-0150-4b18-83a8-07788b1fb0cf", "name": "BKEX", "type": "light"}]}]}, {"id": "88a53cdc-9701-4441-9afa-03e1e23cc9ef", "name": "Plutus", "tags": [], "issuers": [], "match_rules": [{"text": "Plutus", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Plutus", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e4241dff-21a0-4990-9561-174db4bab356", "name": "Plutus", "icons": [{"id": "a502fe85-effc-48b1-833b-019e36557cb5", "name": "Plutus", "type": "light"}]}]}, {"id": "8952184d-8267-4bba-9643-8519de01b3da", "name": "When I Work", "tags": [], "issuers": [], "match_rules": [{"text": "When I Work", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "When I Work", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "58535f61-5b07-44e5-b2c6-62c45d6b484b", "name": "When I Work", "icons": [{"id": "d520ddec-46d3-4666-a950-525464dce970", "name": "When I Work", "type": "light"}]}]}, {"id": "89706ecc-af41-42ab-9d05-98ce63ef4184", "name": "Bohemia Interactive", "tags": [], "issuers": [], "match_rules": [{"text": "Bohemia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bohemia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5b7648e2-c203-4054-ac9f-2b2bec0590b1", "name": "Bohemia Interactive", "icons": [{"id": "2c134154-b613-4476-a8f5-a752b7b171b4", "name": "Bohemia Interactive", "type": "light"}, {"id": "aa08d0b4-8ef5-469a-a6dd-946c6de72388", "name": "Bohemia Interactive", "type": "dark"}]}]}, {"id": "897a4125-1656-4e2f-a6ec-90294aa7d59e", "name": "Fasthosts", "tags": [], "issuers": [], "match_rules": [{"text": "Fasthosts", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fasthosts", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f3e7bdee-dbd0-40e8-a65a-789f3962d417", "name": "Fasthosts", "icons": [{"id": "1ef4025c-1ca3-4c62-b2b4-8548384c0141", "name": "Fasthosts", "type": "light"}, {"id": "8dc4b998-bc71-4885-b802-8a56ad2ba5d6", "name": "Fasthosts", "type": "dark"}]}]}, {"id": "89d4da87-f110-4a4f-862a-051032180536", "name": "Tesla", "tags": [], "issuers": ["Tesla"], "match_rules": [], "icons_collections": [{"id": "7221bad0-f0de-431f-9c16-81acc5049d6d", "name": "Tesla", "icons": [{"id": "07713bb8-dba0-4c94-acd8-51870ab8a14e", "name": "Tesla", "type": "light"}]}]}, {"id": "89e6ea49-a9ad-46e8-85a3-391b5829109d", "name": "Hostens", "tags": [], "issuers": [], "match_rules": [{"text": "Hostens", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hostens", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0f84823e-e705-427a-b0c2-ee9315bfd1a2", "name": "Hostens", "icons": [{"id": "3bdfc3c5-fc30-4a27-b40f-5d5be2544c3d", "name": "Hostens", "type": "light"}]}]}, {"id": "89efcc2d-52f4-4ac3-988d-5d7f3b3cd0a7", "name": "2FAS", "tags": [], "issuers": ["2FAS", "Estadoz"], "match_rules": [], "icons_collections": [{"id": "a5b3fb65-4ec5-43e6-8ec1-49e24ca9e7ad", "name": "2FAS", "icons": [{"id": "38e26d32-3c76-4768-8e12-89a050676a07", "name": "2FAS", "type": "light"}]}]}, {"id": "8a6e8dde-9546-4e62-a30a-143dee285d79", "name": "WordPress", "tags": [], "issuers": ["WordPress.com"], "match_rules": [], "icons_collections": [{"id": "708df726-fb8b-4c01-8990-f2da0cd33839", "name": "WordPress", "icons": [{"id": "9ff31045-fdbc-4957-9abb-499e395aa5c4", "name": "WordPress", "type": "light"}, {"id": "c08a746e-3025-4a57-9652-34d0ac7690cd", "name": "WordPress", "type": "dark"}]}]}, {"id": "8ab8494b-e553-46de-b3e2-60b3b888c51f", "name": "Quidax", "tags": [], "issuers": [], "match_rules": [{"text": "Quidax", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Quidax", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "99f0da7e-0ea7-4845-9a79-d319b2d574c6", "name": "Quidax", "icons": [{"id": "dbfcf1f8-36a6-4693-9c72-872f5387af29", "name": "Quidax", "type": "light"}]}]}, {"id": "8abdb27c-6727-44ec-88b3-cb155d383334", "name": "Versio", "tags": [], "issuers": [], "match_rules": [{"text": "Versio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Versio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85ae1a2b-5e4a-4ed7-87a6-58346e6894aa", "name": "Versio", "icons": [{"id": "1534c6a1-568b-466b-a9be-0c252ee582d1", "name": "Versio", "type": "light"}]}]}, {"id": "8b2853fd-5cbd-4239-904e-b48153969b64", "name": "River Financial", "tags": [], "issuers": [], "match_rules": [{"text": "River Financial", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "River Financial", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "92c353ca-a0a3-4d99-aa67-5579d14b70f8", "name": "River Financial", "icons": [{"id": "12b23f10-9f26-477d-b687-be6e96502bfe", "name": "River Financial", "type": "light"}]}]}, {"id": "8b2cd893-4a24-4aaf-89b6-6e22b2c9ee6f", "name": "TransIP", "tags": [], "issuers": [], "match_rules": [{"text": "TransIP", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TransIP", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c19027da-45a2-4e12-81f9-a7cd7e848f31", "name": "TransIP", "icons": [{"id": "41efdbc7-5078-4d4c-8344-09a23aa5a79f", "name": "TransIP", "type": "dark"}, {"id": "9e64ac06-b77f-4461-b51b-31bfa006a865", "name": "TransIP", "type": "light"}]}]}, {"id": "8b3611e7-1c7b-459e-8fc5-97522ed4ddd2", "name": "Wyre", "tags": [], "issuers": [], "match_rules": [{"text": "Wyre", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wyre", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ecb3323c-fa3b-4901-a334-f714309b5eab", "name": "Wyre", "icons": [{"id": "94bc1561-b7c8-45d3-bca3-2c927ceeb04c", "name": "Wyre", "type": "light"}, {"id": "c8692887-6c42-4139-a4d6-711b85102243", "name": "Wyre", "type": "dark"}]}]}, {"id": "8ba7b1eb-c080-444d-815f-bf05cb909d00", "name": "Termius", "tags": [], "issuers": ["Termius"], "match_rules": null, "icons_collections": [{"id": "4436b171-7e38-4ad8-9e5f-d0d5ce411eb4", "name": "Termius", "icons": [{"id": "7bfa0a83-6672-491f-a0eb-477650042a96", "name": "Termius", "type": "light"}, {"id": "f68976ac-26b3-440c-99eb-3ad2b294e79f", "name": "Termius", "type": "dark"}]}]}, {"id": "8bf276fa-695e-4b11-bd27-42db60a8b074", "name": "Laravel Forge", "tags": [], "issuers": [], "match_rules": [{"text": "Laravel Forge", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Laravel Forge", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "75314cba-050f-4427-b70c-4df66b568d7e", "name": "Laravel Forge", "icons": [{"id": "bec39485-d328-41c2-afef-c02e7652a5d8", "name": "Laravel Forge", "type": "light"}]}]}, {"id": "8bf52f46-80c9-45b2-b29d-c6ca8c08eea8", "name": "Evernote", "tags": [], "issuers": ["Evernote"], "match_rules": [], "icons_collections": [{"id": "3b34f154-62db-45d5-a668-1fc7524fc06a", "name": "Evernote", "icons": [{"id": "ce446bdd-7b2c-43db-9b93-db6cb2e7c686", "name": "Evernote", "type": "light"}]}]}, {"id": "8bfe876e-7e7b-458c-b452-7caeda302a8d", "name": "Barracuda Networks", "tags": [], "issuers": [], "match_rules": [{"text": "Barracuda", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Barracuda", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "37de87f7-1f31-49ff-bda4-dadb082038ca", "name": "Barracuda Networks", "icons": [{"id": "648df04a-a0ff-456d-b6a4-531857b1a2ef", "name": "Barracuda Networks", "type": "light"}]}]}, {"id": "8c7591c7-c5b1-48ad-9b63-3ed394d48280", "name": "TaxBit", "tags": [], "issuers": [], "match_rules": [{"text": "TaxBit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TaxBit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "49ac9022-b8ed-4911-b7a2-8d49712c935b", "name": "TaxBit", "icons": [{"id": "fadd4bbe-1ec3-4642-be45-00eca63df349", "name": "TaxBit", "type": "light"}]}]}, {"id": "8c956e25-5890-4625-8599-c478aabf8857", "name": "Workplace", "tags": [], "issuers": [], "match_rules": [{"text": "Workplace", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Workplace", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cc95ae95-5773-4bcf-83d2-dccac6ebcc02", "name": "Workplace", "icons": [{"id": "90ef01ac-b4ac-4f2e-8b4d-3e05d5e85a38", "name": "Workplace", "type": "dark"}, {"id": "e267fac3-e18e-4e49-a2a1-28c168369f02", "name": "Workplace", "type": "light"}]}]}, {"id": "8cad6c46-8dfb-4ace-88d3-f3f231dcec7b", "name": "Capcom ID", "tags": [], "issuers": [], "match_rules": [{"text": "Capcom ID", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Capcom ID", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3832c307-800c-42c5-a32f-8dce33a46eef", "name": "Capcom ID", "icons": [{"id": "5c8eb69b-220c-4bff-b7c6-565a060c149a", "name": "Capcom ID", "type": "light"}]}]}, {"id": "8ccd201d-a371-4123-a84f-70348ca9336c", "name": "Toronto Metropolitan University", "tags": [], "issuers": [], "match_rules": [{"text": "Toronto Metropolitan University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Toronto Metropolitan University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "757ea6cd-4b92-4548-acb7-e0b94d659f38", "name": "Toronto Metropolitan University", "icons": [{"id": "283faaf9-f273-4dbf-a95c-ad3bd63d2a6a", "name": "Toronto Metropolitan University", "type": "light"}]}]}, {"id": "8cd97a5c-e890-47ee-8597-8095bba4d400", "name": "Bittrex", "tags": [], "issuers": [], "match_rules": [{"text": "Bittrex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "672c798a-3c40-4eb3-b489-de0bc52d20a9", "name": "Bittrex", "icons": [{"id": "306834f5-9e68-4fa3-b9ff-ac8e32a22586", "name": "Bittrex", "type": "light"}]}]}, {"id": "8cda437e-8759-4571-b0c9-9bee964fbd64", "name": "Standard Notes", "tags": [], "issuers": ["Standard Notes"], "match_rules": null, "icons_collections": [{"id": "37799941-a47d-4b12-86f1-fdddda28a05f", "name": "Standard Notes", "icons": [{"id": "8e384637-0826-4db4-8f52-a8daa6d6b154", "name": "Standard Notes", "type": "light"}, {"id": "deaebdcd-5cbe-4a35-895f-9330fc287e3f", "name": "Standard Notes", "type": "dark"}]}]}, {"id": "8cf11e76-9989-41a4-b623-0c6bad678645", "name": "HEY", "tags": [], "issuers": ["HEY"], "match_rules": null, "icons_collections": [{"id": "fbc8da17-9128-430f-b86b-8aa5e735a299", "name": "HEY", "icons": [{"id": "0f0277a1-c6e5-4141-9182-75b4425de101", "name": "HEY", "type": "light"}]}]}, {"id": "8d21146d-684e-47fe-8658-3b11cfd11138", "name": "Bitdefender", "tags": [], "issuers": ["Bitdefender"], "match_rules": null, "icons_collections": [{"id": "394aa3fc-2818-45f2-8f0f-612856b2ab82", "name": "Bitdefender", "icons": [{"id": "9ff7f176-86fa-4568-87a5-80195e810ed4", "name": "Bitdefender", "type": "light"}]}]}, {"id": "8d28c57c-2344-45e4-aa5b-fc41d0d8578c", "name": "Unfuddle STACK", "tags": [], "issuers": [], "match_rules": [{"text": "Unfuddle STACK", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Unfuddle STACK", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "184c88ae-3399-4432-b895-5a461111f6cd", "name": "Unfuddle STACK", "icons": [{"id": "cdee790b-6c36-4cbb-8365-94fe7aa71d77", "name": "Unfuddle STACK", "type": "light"}]}]}, {"id": "8d2b7cfd-2d6e-4a82-af14-4d60924abf84", "name": "Skrill", "tags": [], "issuers": ["Skrill"], "match_rules": [], "icons_collections": [{"id": "6f8b55b6-d7bb-4691-bda2-2b1de39fb448", "name": "Skrill", "icons": [{"id": "d7b9c9f2-a1e6-4861-943d-59761adb6a88", "name": "Skrill", "type": "light"}]}]}, {"id": "8d54ea9f-0471-4ae1-90cd-b819aecf5c74", "name": "Recruitee", "tags": [], "issuers": [], "match_rules": [{"text": "Recruitee", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Recruitee", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4aea03e2-9af0-41c4-a85b-eee56ef8f912", "name": "Recruitee", "icons": [{"id": "4a15ec6d-35b2-4364-b2e7-4f6abe6bbbce", "name": "Recruitee", "type": "light"}]}]}, {"id": "8d8cd023-32c3-41d7-afa2-1434b7b81a68", "name": "Discourse", "tags": [], "issuers": ["Discourse"], "match_rules": [], "icons_collections": [{"id": "2f5845bf-7788-4b08-9bc8-a889d38fa6f6", "name": "Discourse", "icons": [{"id": "14eda6ce-931a-4eba-8588-1059943f5c03", "name": "Discourse", "type": "light"}]}]}, {"id": "8daa3100-d368-422b-92e4-11f305d23b20", "name": "eclincher", "tags": [], "issuers": [], "match_rules": [{"text": "eclincher", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "eclincher", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9a595cf-0937-43bd-99b5-0911d742da2e", "name": "eclincher", "icons": [{"id": "9e16692d-4575-4da1-882b-59ae627cac2b", "name": "eclincher", "type": "light"}]}]}, {"id": "8de8285e-b2bc-44ed-86b9-9efd3c58a2b6", "name": "Bitso", "tags": [], "issuers": [], "match_rules": [{"text": "Bitso", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitso", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c75ace06-ccae-4c43-a58a-baecf0e1ef4f", "name": "Bitso", "icons": [{"id": "1f87b650-e26a-4942-b2d1-7648b476ebd4", "name": "Bitso", "type": "light"}, {"id": "6ef7dfe6-d96f-405b-ac20-cfa27997c280", "name": "Bitso", "type": "dark"}]}]}, {"id": "8e341159-38ce-434d-928a-d76637c9b827", "name": "Terraform", "tags": [], "issuers": [], "match_rules": [{"text": "Terraform", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "439ca1bc-c64a-4bc6-85c2-296815ba76f3", "name": "Terraform", "icons": [{"id": "781de4e7-68e9-462a-b5ae-780be6672d55", "name": "Terraform", "type": "light"}]}]}, {"id": "8e344ee0-9350-45e4-b6ef-4f7c06ba3798", "name": "OPSkins", "tags": [], "issuers": ["OPSkins"], "match_rules": [], "icons_collections": [{"id": "0a557467-29de-4967-a905-2351f074d3d8", "name": "OPSkins", "icons": [{"id": "2f92cf23-d6a0-4342-a991-64bbc0070e02", "name": "OPSkins", "type": "light"}, {"id": "b771c77c-885e-43fd-86a9-64d258993bfc", "name": "OPSkins", "type": "dark"}]}]}, {"id": "8e426c3b-4ad0-4ed7-8520-cc0bb4120bb1", "name": "Algolia", "tags": [], "issuers": [], "match_rules": [{"text": "Algolia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Algolia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f40b252a-106c-4353-a4da-5d861dc657dd", "name": "Algolia", "icons": [{"id": "a40f31e7-7799-4eb5-8abf-1040947ce50c", "name": "Algolia", "type": "light"}]}]}, {"id": "8e6b9eea-ce00-4371-884a-b540b3467950", "name": "Figma", "tags": [], "issuers": ["Figma"], "match_rules": [], "icons_collections": [{"id": "3f24378a-ab65-4034-ae7f-b13f624de766", "name": "Figma", "icons": [{"id": "39bdc4e6-a43d-4a16-8ee3-620b145221d0", "name": "Figma", "type": "light"}]}]}, {"id": "8e806660-1246-4beb-bca4-46b2a1254a58", "name": "Guideline", "tags": [], "issuers": [], "match_rules": [{"text": "Guideline", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Guideline", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "428e7dfb-928c-46d3-95d1-a32b28a8b62b", "name": "Guideline", "icons": [{"id": "5208b94c-6801-4124-a4b2-2490c4dc42e9", "name": "Guideline", "type": "light"}, {"id": "720a2eef-f191-4be3-8770-664aaff093a6", "name": "Guideline", "type": "dark"}]}]}, {"id": "8ea00cb7-ca69-4b43-b368-c39ef874b5cd", "name": "Sprinklr", "tags": [], "issuers": [], "match_rules": [{"text": "Sprinklr", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sprinklr", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c4965be7-bf4b-47a6-aa00-4e3f2874d60e", "name": "Sprinklr", "icons": [{"id": "c84bb356-8cef-4c56-b2b6-dcc4e92a7ce9", "name": "Sprinklr", "type": "light"}, {"id": "dbabcbdd-a6f8-413c-a3bf-d8574659584d", "name": "Sprinklr", "type": "dark"}]}]}, {"id": "8f097659-0b9c-4209-9c47-9f9a64ba510a", "name": "Register365", "tags": [], "issuers": [], "match_rules": [{"text": "Register365", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Register365", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d96edb81-4e1a-433f-9304-30c145391d40", "name": "Register365", "icons": [{"id": "59bff2ac-c79d-45fc-9f42-080783780ba9", "name": "Register365", "type": "light"}, {"id": "fa995159-a3ca-4afa-a7b2-7d47c33d32db", "name": "Register365", "type": "dark"}]}]}, {"id": "8f3be8b1-bdd9-407a-8ad1-e169e291927e", "name": "Mos.ru", "tags": [], "issuers": [], "match_rules": [{"text": "Mos.ru", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mos.ru", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2da45f6a-9def-458b-8ffd-0f9e97481a40", "name": "Mos.ru", "icons": [{"id": "ffa8a631-eafc-4871-b399-4d762f379286", "name": "Mos.ru", "type": "light"}]}]}, {"id": "8f4c7951-526e-49b9-8996-28d65d15ed47", "name": "Wyze", "tags": [], "issuers": ["Wyze"], "match_rules": [], "icons_collections": [{"id": "233af9ea-d8cb-4586-863e-819ca7c46eae", "name": "Wyze", "icons": [{"id": "06c4394e-8b2e-4efb-9c0d-8feebea4b301", "name": "Wyze", "type": "light"}]}]}, {"id": "8f9fc051-5d1e-42d5-929d-1e72a9f85855", "name": "Tauros", "tags": [], "issuers": [], "match_rules": [{"text": "Tauros", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tauros", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "557f8079-c3d4-429c-8fe2-1c126557ec3c", "name": "Tauros", "icons": [{"id": "78c1644a-0cd0-4b3f-b9f1-48d11a61785c", "name": "Tauros", "type": "dark"}, {"id": "a30b2dcf-319b-4539-9584-7acf14b3a06f", "name": "Tauros", "type": "light"}]}]}, {"id": "8ffd524b-2986-4fd6-b7f7-418dcc3d8f9f", "name": "Caspio", "tags": [], "issuers": [], "match_rules": [{"text": "Caspio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Caspio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a5fcaee7-01c4-4ace-aa62-d8d94e6823c7", "name": "Caspio", "icons": [{"id": "6adca200-8ad4-4596-87aa-5875c22cd1ef", "name": "Caspio", "type": "light"}]}]}, {"id": "9017ad1f-3d41-4cf9-a4f1-cbe4b3d9ab68", "name": "Teamwork", "tags": [], "issuers": [], "match_rules": [{"text": "Teamwork", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Teamwork", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "368ea9b5-46b2-46db-9440-eddb84c65449", "name": "Teamwork", "icons": [{"id": "cc6fbf2a-efee-4e82-a137-c5750b92c531", "name": "Teamwork", "type": "light"}]}]}, {"id": "901db5c9-a04b-4fd9-b4b2-40809967a777", "name": "Statuspage", "tags": [], "issuers": [], "match_rules": [{"text": "Statuspage", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Statuspage", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5258781d-f346-437c-a72f-c4f9d4abdc06", "name": "Statuspage", "icons": [{"id": "a668c41c-4e65-4ece-b8b6-c6dcfcedc0ac", "name": "Statuspage", "type": "light"}]}]}, {"id": "903c215e-cb1d-448b-ab92-7cdef3361c1b", "name": "Mattermost", "tags": [], "issuers": [], "match_rules": [{"text": "Mattermost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mattermost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4ab1a53f-7ca6-45bc-9db9-141a88f2a6ad", "name": "Mattermost", "icons": [{"id": "2dd4a834-6533-499e-afd2-f853c7181b03", "name": "Mattermost", "type": "dark"}, {"id": "6fb620af-67ef-4c24-8d74-952fa2ffc9c5", "name": "Mattermost", "type": "light"}]}]}, {"id": "90660e86-1b56-47ae-b89e-b8ee6f544ad9", "name": "Pocketsmith", "tags": [], "issuers": [], "match_rules": [{"text": "Pocketsmith", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pocketsmith", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "86db4634-c7d0-4d75-ad4d-24f74464eb57", "name": "Pocketsmith", "icons": [{"id": "95d700e7-3fe1-480a-a755-cf916d7f036a", "name": "Pocketsmith", "type": "light"}]}]}, {"id": "906cdfcd-6c92-4eb1-a0ca-963ebc867489", "name": "eUKhost", "tags": [], "issuers": [], "match_rules": [{"text": "eUKhost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "eUKhost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "92200b10-a81b-4d42-92aa-5b5855a89bd5", "name": "eUKhost", "icons": [{"id": "610c75f7-e322-4b00-8e0c-04bd914a92ea", "name": "eUKhost", "type": "light"}]}]}, {"id": "90a4ed41-a143-4681-a324-b57f21683061", "name": "Quickbooks Online", "tags": ["intuit"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "dbccf2f4-2073-479c-a655-fe19daf4ac2c", "name": "Quickbooks Online", "icons": [{"id": "d84f3e2a-ec6f-4401-acd5-f3dd1553866c", "name": "Quickbooks Online", "type": "light"}]}]}, {"id": "912fc163-7efd-4d1e-8795-f380a12c2c71", "name": "StormGain", "tags": [], "issuers": [], "match_rules": [{"text": "StormGain", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StormGain", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cdca2df5-ef53-4eb1-bb47-d9d3cc9cffda", "name": "StormGain", "icons": [{"id": "ea3a19ea-d7cc-4eee-884e-3213ff8f664c", "name": "StormGain", "type": "light"}]}]}, {"id": "921c218f-9aa4-4191-a638-dd5cb1a5a19a", "name": "TorGuard", "tags": [], "issuers": [], "match_rules": [{"text": "TorGuard", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TorGuard", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d31b0911-28ce-4f5f-9d38-a9a0757548a4", "name": "TorGuard", "icons": [{"id": "044bc5ed-08a0-48b7-b63b-a6269b558590", "name": "TorGuard", "type": "dark"}, {"id": "4806f4ef-80cb-4a20-afd2-387448ebad5e", "name": "TorGuard", "type": "light"}]}]}, {"id": "923c55fc-7eca-4027-b853-c97955b356cc", "name": "Atlantiss", "tags": [], "issuers": ["Atlantiss"], "match_rules": [], "icons_collections": [{"id": "3db5e1e5-6dcc-427c-91a7-08b31ed3d3be", "name": "Atlantiss", "icons": [{"id": "5ceae49b-9049-45fa-85cf-61b57636646d", "name": "Atlantiss", "type": "light"}]}]}, {"id": "924f8361-2435-41fe-8070-b2f6b105b042", "name": "LinkedIn", "tags": [], "issuers": ["LinkedIn"], "match_rules": [], "icons_collections": [{"id": "843da9a7-a44a-42c6-9fdd-2a723a7d05d7", "name": "LinkedIn", "icons": [{"id": "dfa1f1c1-286c-4ab2-817b-cac420c83a8d", "name": "LinkedIn", "type": "light"}]}]}, {"id": "925c70ca-5442-4411-939e-d0ae4775c182", "name": "Nozbe Teams", "tags": [], "issuers": [], "match_rules": [{"text": "Nozbe Teams", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nozbe Teams", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c49414b9-783e-4b67-9521-4ce8a5a36d48", "name": "Nozbe Teams", "icons": [{"id": "d4132f69-b4f3-4e66-9410-265f81c20868", "name": "Nozbe Teams", "type": "light"}]}]}, {"id": "927e82a1-cf11-4c5b-ab11-b76b56681fa7", "name": "VRChat", "tags": [], "issuers": [], "match_rules": [{"text": "VRChat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VRChat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6ebbf091-d242-4155-bf89-4df4a4b37175", "name": "VRChat", "icons": [{"id": "c0ff99e7-7e2d-40ce-9340-1106984125f7", "name": "VRChat", "type": "light"}]}]}, {"id": "928f0793-73ab-4c92-a4c1-fdece77f7091", "name": "TaxDome", "tags": [], "issuers": [], "match_rules": [{"text": "TaxDome", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TaxDome", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4fb91386-8652-421d-a63e-8593d28f72e1", "name": "TaxDome", "icons": [{"id": "a0258e0b-dc6a-476f-8ad3-178990941ae2", "name": "TaxDome", "type": "light"}]}]}, {"id": "92acffb9-c266-4117-bfbe-1678642b6dbb", "name": "InterServer", "tags": [], "issuers": [], "match_rules": [{"text": "InterServer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "InterServer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f89517fe-02f5-4aa0-9545-e932b978c22a", "name": "InterServer", "icons": [{"id": "4e2dc9f8-d082-406c-880c-1238ffdfc39b", "name": "InterServer", "type": "light"}]}]}, {"id": "92db112e-82e3-4890-ac4b-922b498bf65d", "name": "DeployHQ", "tags": [], "issuers": [], "match_rules": [{"text": "DeployHQ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DeployHQ", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6f182ab5-dca8-4d55-8504-edcba30b3f88", "name": "DeployHQ", "icons": [{"id": "129654fe-6a80-4116-a68a-e82b05e35915", "name": "DeployHQ", "type": "light"}, {"id": "7e2a756e-e6e2-4671-83cf-2e21ab1d631a", "name": "DeployHQ", "type": "dark"}]}]}, {"id": "93eb1618-49e2-415d-82b6-269cf16dc1e0", "name": "One.com", "tags": [], "issuers": [], "match_rules": [{"text": "One.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "One.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f3015bb9-58bb-4fbd-bc27-e9a9c134117f", "name": "One.com", "icons": [{"id": "d3d85cf6-e159-4032-acde-d10263336e36", "name": "One.com", "type": "light"}]}]}, {"id": "94103714-69d0-4715-bea3-63ed3e60df02", "name": "Orbx Shop", "tags": [], "issuers": ["OrbxDirect"], "match_rules": null, "icons_collections": [{"id": "73a4aeba-3fc7-4cc0-b661-cb96fc72fa10", "name": "Orbx Shop", "icons": [{"id": "f8275185-3ad3-470b-bbbb-37eeb2881db6", "name": "Orbx Shop", "type": "light"}]}]}, {"id": "94132bbc-a0db-4b2b-b8c1-c6c4e721cc8c", "name": "Qualia", "tags": [], "issuers": [], "match_rules": [{"text": "Qualia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Qualia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "19952685-093d-4cc2-b234-dd12c04f9309", "name": "Qualia", "icons": [{"id": "d3317cf5-75f6-4623-b112-c1cc9174a667", "name": "Qualia", "type": "light"}]}]}, {"id": "9459690a-8958-4fd9-ae4c-d9b34869682b", "name": "ScaleGrid", "tags": [], "issuers": [], "match_rules": [{"text": "ScaleGrid", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ScaleGrid", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "307ffb85-ae45-4c00-a954-c12af9ef46f3", "name": "ScaleGrid", "icons": [{"id": "5f770dc7-6368-4900-a2c3-f820610c1b7d", "name": "ScaleGrid", "type": "light"}]}]}, {"id": "945f09b7-b3ac-46d2-8e35-88cf8637b17c", "name": "omg.lol", "tags": [], "issuers": [], "match_rules": [{"text": "omg.lol", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "omg.lol", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "66e5c2d4-6186-42dc-9ec8-b33ba7d7789e", "name": "omg.lol", "icons": [{"id": "76e4d444-1502-4cf5-b2c8-a19f8907a79c", "name": "omg.lol", "type": "light"}]}]}, {"id": "946154c5-1bb5-4896-80ba-527f58e48034", "name": "Pleo", "tags": [], "issuers": [], "match_rules": [{"text": "Pleo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pleo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "96cb4b6f-8f6f-4e23-9c61-ce21eae487e0", "name": "Pleo", "icons": [{"id": "91b6f8ee-25bc-4bc9-b2d3-da8a5994b6ac", "name": "Pleo", "type": "dark"}, {"id": "e22d3702-274e-48bb-961f-2aabc20e2f79", "name": "Pleo", "type": "light"}]}]}, {"id": "946cf1e6-dedb-4994-922b-62b0d73b17c1", "name": "Parimatch", "tags": [], "issuers": [], "match_rules": [{"text": "Parimatch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Parimatch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0ab73b7f-939e-4660-b619-8c50e3ad8cf5", "name": "Parimatch", "icons": [{"id": "fcd9acae-054b-48a9-8b62-54290893a059", "name": "Parimatch", "type": "light"}]}]}, {"id": "94712ff8-bbe1-41bc-8b81-0f0395463e88", "name": "Login.gov", "tags": [], "issuers": ["Login.gov"], "match_rules": [], "icons_collections": [{"id": "8ad7697b-6782-47e4-a9fb-8e07499825ba", "name": "Login.gov", "icons": [{"id": "95d36fae-2a65-474c-b236-bcc5ad0247cd", "name": "Login.gov", "type": "light"}]}]}, {"id": "9478a1e5-5fdb-4e1f-b3ad-787a32528ff0", "name": "BTC BOX", "tags": [], "issuers": [], "match_rules": [{"text": "BTC BOX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BTC BOX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a770e5e7-7920-4d7b-92d8-2ba9594f3b5e", "name": "BTC BOX", "icons": [{"id": "6984af70-d302-4d3c-8752-7ded98dc5376", "name": "BTC BOX", "type": "dark"}, {"id": "e6530da7-d475-430d-9512-5eadce9262a8", "name": "BTC BOX", "type": "light"}]}]}, {"id": "950bc870-769c-4610-9b38-6ad6222f0e88", "name": "T. Rowe Price", "tags": [], "issuers": [], "match_rules": [{"text": "T. Rowe Price", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "T. Rowe Price", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4a45ada8-cc81-40e0-a277-c692efb0326d", "name": "T. Rowe Price", "icons": [{"id": "d5a4926a-d793-422b-abbf-0dd17d8f5107", "name": "T. Rowe Price", "type": "light"}]}]}, {"id": "9570b3fb-6de9-4a2b-9375-cb9338f19cf2", "name": "BitGo", "tags": [], "issuers": [], "match_rules": [{"text": "BitGo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitGo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ed1e3140-e59c-4606-ad92-5271397d2cda", "name": "BitGo", "icons": [{"id": "b283dfe9-e7a4-4c58-93bc-e584f89969f4", "name": "BitGo", "type": "light"}]}]}, {"id": "95fec776-13f1-4315-b66e-4880ba15e7b4", "name": "Moniker", "tags": [], "issuers": [], "match_rules": [{"text": "Moniker", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Moniker", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "320bc9a4-d685-43f0-a9df-cd7865763cac", "name": "Moniker", "icons": [{"id": "2a1b9b08-2c52-401c-a3fd-5b8723c25a01", "name": "Moniker", "type": "light"}]}]}, {"id": "96234b0e-7412-4d26-bbb5-1a00d0de1e1f", "name": "Mastodon", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "bd364131-1fec-4597-b606-1746ded21b09", "name": "Mastodon", "icons": [{"id": "59416d88-da3f-4f83-8f23-b5a3986ccce6", "name": "Mastodon", "type": "light"}]}]}, {"id": "964358ca-60e7-4613-8a33-9b31c53b79a6", "name": "CryptoMKT", "tags": [], "issuers": ["www.cryptomkt.com"], "match_rules": [], "icons_collections": [{"id": "0d065bba-9c80-4e7f-8af2-f7d3e31477ce", "name": "CryptoMKT", "icons": [{"id": "2b406624-cd90-41fc-b4fe-8b38bf81db1b", "name": "CryptoMKT", "type": "light"}, {"id": "eb17a895-ef47-4310-b0c3-f1377ffc3284", "name": "CryptoMKT", "type": "dark"}]}]}, {"id": "96db7cba-3226-45d6-8b34-2d081b860cd6", "name": "Asana", "tags": [], "issuers": ["Asana"], "match_rules": null, "icons_collections": [{"id": "2388f03a-9e91-4462-917f-70d86678b002", "name": "Asana", "icons": [{"id": "386b44e8-33cc-4bd9-bca9-5b46b1f4c22a", "name": "Asana", "type": "light"}]}]}, {"id": "9703b1b3-9942-4789-80e3-a8ef8c52daad", "name": "Autodesk", "tags": [], "issuers": [], "match_rules": [{"text": "Autodesk", "field": "label", "matcher": "equals", "ignore_case": true}], "icons_collections": [{"id": "ee3f948d-de04-4d92-9899-949b0b193a1d", "name": "Autodesk", "icons": [{"id": "09b899ba-95af-4097-ab04-d622e3529401", "name": "Autodesk", "type": "light"}, {"id": "ad9b2c46-4800-49eb-9475-ec03ec48d94c", "name": "Autodesk", "type": "dark"}]}]}, {"id": "9746650c-0dc6-438b-982f-5c38dc72cce1", "name": "Binance", "tags": [], "issuers": ["Binance.com", "BinanceUS"], "match_rules": [], "icons_collections": [{"id": "e547c093-2b09-4196-b69b-72e77ef1ed9c", "name": "Binance", "icons": [{"id": "70350fcc-5eec-4e01-b755-1a935b954359", "name": "Binance", "type": "light"}]}]}, {"id": "97657a82-03b2-4267-9d75-90facb792666", "name": "123 Form Builder", "tags": [], "issuers": [], "match_rules": [{"text": "123 Form Builder", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "123FormBuilder", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "123 Form Builder", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "123FormBuilder", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dfb1c4bf-9ad6-4cb9-a284-68c9dcd34645", "name": "123 Form Builder", "icons": [{"id": "c57d325a-3760-4950-aa7c-cc008f01e2c8", "name": "123 Form Builder", "type": "light"}]}]}, {"id": "976f6ee4-c29c-4e58-93b0-aef7ad73d426", "name": "Wikimedia", "tags": [], "issuers": [], "match_rules": [{"text": "Wikimedia", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Wikimedia", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1adf879b-cffe-4807-b63b-49cfc0d2192d", "name": "Wikimedia", "icons": [{"id": "d271510b-52e6-4e6e-a01b-e111bda8e90a", "name": "Wikimedia", "type": "light"}]}]}, {"id": "9785c37b-1d7a-477b-ab22-65e3ccd50608", "name": "Contabo", "tags": [], "issuers": [], "match_rules": [{"text": "Contabo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Contabo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5199f3ae-dd15-457f-a14a-a9533db1c1e4", "name": "Contabo", "icons": [{"id": "887ce4cc-4d39-46fb-bd42-eddb5bde8759", "name": "Contabo", "type": "light"}]}]}, {"id": "978bcc0e-7cd2-4f49-9fdc-3966751d92f4", "name": "IFIRMA.PL", "tags": [], "issuers": ["IFIRMA.PL"], "match_rules": null, "icons_collections": [{"id": "82bd1ca0-e4b1-4a9e-a5ac-4c2ae6b2a44a", "name": "IFIRMA.PL", "icons": [{"id": "97232280-5e6e-450f-a5f7-d6c785b9c1b0", "name": "IFIRMA.PL", "type": "light"}]}]}, {"id": "97999ca3-977b-47a6-ad23-442640e8aa52", "name": "CloudAMQP", "tags": [], "issuers": [], "match_rules": [{"text": "CloudAMQP", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CloudAMQP", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b418342-0985-4cda-915f-56aa6107c7a1", "name": "CloudAMQP", "icons": [{"id": "f479c23b-02b5-4d78-a63d-3e177e3d2235", "name": "CloudAMQP", "type": "light"}]}]}, {"id": "97b7c609-edce-400d-b0ce-a1894ac4305b", "name": "OpenVPN", "tags": [], "issuers": ["OpenVPN"], "match_rules": [], "icons_collections": [{"id": "91a3eda0-5906-4ba9-ba03-5c6c584c55ab", "name": "OpenVPN", "icons": [{"id": "debf8977-8c70-4ed1-adbe-03a844e67b93", "name": "OpenVPN", "type": "dark"}, {"id": "e6e0f5ae-ab71-41ff-b1d6-8ce22cd757e7", "name": "OpenVPN", "type": "light"}]}]}, {"id": "97d8ff61-4835-4471-982d-794f79aa6be0", "name": "Biterfill", "tags": [], "issuers": [], "match_rules": [{"text": "Biterfill", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Biterfill", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6b777110-46a2-40e0-bee7-391d19d5073b", "name": "Biterfill", "icons": [{"id": "43f37539-3d74-4277-9127-493407f8dfa8", "name": "Biterfill", "type": "dark"}, {"id": "99354818-ef2e-4373-9bbe-4e3d44baffab", "name": "Biterfill", "type": "light"}]}]}, {"id": "97dac6d8-f6e9-467a-8341-44514a7a04b6", "name": "Studio Ninja", "tags": [], "issuers": [], "match_rules": [{"text": "Studio Ninja", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Studio Ninja", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "67378f92-09c0-4113-8c7e-958bda6ea387", "name": "Studio Ninja", "icons": [{"id": "9993597a-29bf-41f7-8a55-dc036a763a57", "name": "Studio Ninja", "type": "light"}, {"id": "d253026b-6a1a-4f3a-9c5d-887d27388b96", "name": "Studio Ninja", "type": "dark"}]}]}, {"id": "97dcded8-02b9-42a4-af3b-f5d414b45d05", "name": "Linus Tech Tips", "tags": [], "issuers": ["Linus Tech Tips"], "match_rules": [], "icons_collections": [{"id": "c9a5ca56-05d0-4f2a-a572-da373e953301", "name": "Linus Tech Tips", "icons": [{"id": "519356d7-c8b9-4b6b-9e92-d140922eb537", "name": "Linus Tech Tips", "type": "light"}]}]}, {"id": "97ff87f6-f264-449b-a946-ceda22cb7cfa", "name": "OPNsense", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "6a0fb3a0-7cb3-4c8e-8ef2-14d6ae162b85", "name": "OPNsense", "icons": [{"id": "10a92caa-5490-47ac-8ad3-3b932809d799", "name": "OPNsense", "type": "light"}]}]}, {"id": "9828efb1-2440-4e67-9a11-1181d2c3b53b", "name": "NOYB", "tags": [], "issuers": [], "match_rules": [{"text": "NOYB", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NOYB", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "724d854a-f90f-43db-b815-9791621f3936", "name": "NOYB", "icons": [{"id": "0de81f67-6105-4fd2-b1e5-7896c96b3a8a", "name": "NOYB", "type": "light"}]}]}, {"id": "98c9b128-d065-4946-a838-07dfa68f1669", "name": "DeinServerHost", "tags": [], "issuers": [], "match_rules": [{"text": "DeinServerHost", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "94159de2-2211-4f21-ae47-221cc364a31e", "name": "DeinServerHost", "icons": [{"id": "48bf094c-31bc-405f-b3dc-d31ebf874d32", "name": "DeinServerHost", "type": "light"}, {"id": "e39b8de1-1969-4a6f-ac93-edac97c11c27", "name": "DeinServerHost", "type": "dark"}]}]}, {"id": "98cb606b-1b2e-4df5-b46d-50da2184d925", "name": "PlanetHoster", "tags": [], "issuers": [], "match_rules": [{"text": "PlanetHoster", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "PlanetHoster", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3c9c902e-8b4d-4187-a340-1c7c82e34144", "name": "PlanetHoster", "icons": [{"id": "58fa0823-49f0-4158-bd72-59b7e3ab1a61", "name": "PlanetHoster", "type": "light"}]}]}, {"id": "992be346-7bd6-4389-9efd-8dfab6018452", "name": "Dropbox Sign", "tags": ["hello"], "issuers": ["HelloSign"], "match_rules": [{"text": "Dropbox Sign", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Dropbox Sign", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "be69eeeb-4df0-47c8-804a-b8808552f592", "name": "Dropbox Sign", "icons": [{"id": "724d2f1a-5379-446a-843b-9c486eb9d673", "name": "Dropbox Sign", "type": "dark"}, {"id": "c56bfaa8-4f3b-405f-8ad5-64d5d51d377d", "name": "Dropbox Sign", "type": "light"}]}]}, {"id": "9a12cc0d-36f0-4570-8dd3-f193d0a1e286", "name": "HostMonster", "tags": [], "issuers": [], "match_rules": [{"text": "HostMonster", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HostMonster", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2bb2f1a6-f9e8-4297-a35e-b83d1d58e98a", "name": "HostMonster", "icons": [{"id": "bf7fe254-3351-45f0-8b46-e4d3a8e8ac8f", "name": "HostMonster", "type": "light"}]}]}, {"id": "9a24d1ca-da74-4f81-88ae-d3d174300e30", "name": "AWS", "tags": ["amazon", "web", "services"], "issuers": ["Amazon Web Services"], "match_rules": [], "icons_collections": [{"id": "d3b86ff6-7dda-40cc-a63e-c3db426460b7", "name": "AWS", "icons": [{"id": "02840c5b-3d46-4c64-954a-04fe60ffd2ac", "name": "Amazon Web Services", "type": "light"}, {"id": "aa7806a4-4768-4354-87ef-80adb34304aa", "name": "Amazon Web Services", "type": "dark"}]}]}, {"id": "9a4fcb02-0bc1-4ea9-8dce-dbe60353ab4c", "name": "Osirium PAM", "tags": [], "issuers": [], "match_rules": [{"text": "Osirium", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Osirium", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "218622ba-b10c-4b24-b5ce-8b98735ed84e", "name": "Osirium PAM", "icons": [{"id": "969c9535-d56b-493c-901a-30c10a5ac43e", "name": "Osirium PAM", "type": "dark"}, {"id": "de03167f-ce02-44e8-b23a-eb9ab0a89285", "name": "Osirium PAM", "type": "light"}]}]}, {"id": "9a6e29d3-54be-4793-af01-7d9f1ca4f941", "name": "Allegro", "tags": [], "issuers": ["Allegro"], "match_rules": [], "icons_collections": [{"id": "163f6301-123d-4925-8058-07b04146b750", "name": "Allegro", "icons": [{"id": "1b27c292-00a7-461a-9e3d-0203dfe11185", "name": "Allegro", "type": "light"}]}]}, {"id": "9aa4d939-3fd7-4f4f-a046-58a5662a018e", "name": "EasyDMARC", "tags": [], "issuers": [], "match_rules": [{"text": "EasyDMARC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "EasyDMARC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5b447e9e-e23f-4b60-bc6d-888b7574ef40", "name": "EasyDMARC", "icons": [{"id": "49c418da-d8cc-4a32-865a-584f3b21f90a", "name": "EasyDMARC", "type": "light"}]}]}, {"id": "9b50cb0f-8a65-44ef-b36e-94f3a8bf6e9a", "name": "Shift4Shop", "tags": [], "issuers": [], "match_rules": [{"text": "Shift4Shop", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Shift4Shop", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "42d488e0-f71c-4a69-b375-614c53955583", "name": "Shift4Shop", "icons": [{"id": "928bb927-c3db-4ac2-895d-402950ff8b4a", "name": "Shift4Shop", "type": "light"}]}]}, {"id": "9bb3d16f-9d15-4de4-90af-a61233d7e799", "name": "MS To-Do", "tags": ["Microsoft"], "issuers": [], "match_rules": [{"text": "Microsoft To-Do", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Microsoft To-Do", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bd965e39-9884-4880-8e5a-a200a8b461c1", "name": "MS To-Do", "icons": [{"id": "945d3b44-3f21-4189-acb6-82ad4c08069b", "name": "Microsoft To-Do", "type": "light"}]}]}, {"id": "9bbfeea9-6b58-4e8a-a00d-b1468519e21d", "name": "Workato", "tags": [], "issuers": [], "match_rules": [{"text": "Workato", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Workato", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "68ad5e41-8a75-46f6-b359-47475b8a6038", "name": "Workato", "icons": [{"id": "c33fea1f-7feb-4745-9336-ac0df5d4ab1a", "name": "Workato", "type": "light"}]}]}, {"id": "9bcc287d-63ba-48ef-81f2-dd011019edba", "name": "TicketSource", "tags": [], "issuers": [], "match_rules": [{"text": "TicketSource", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TicketSource", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4f464db6-401c-446a-b7d5-9f58a9c8a4c1", "name": "TicketSource", "icons": [{"id": "5722fdea-1712-4315-8ef4-581b727c8793", "name": "TicketSource", "type": "light"}]}]}, {"id": "9bef67a1-d622-4748-ab5b-e96e90f7998c", "name": "Avanza", "tags": [], "issuers": [], "match_rules": [{"text": "Avanza", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Avanza", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "de2ead78-add8-450b-a2ff-b7a84070c66b", "name": "Avanza", "icons": [{"id": "b6954f0a-1daa-493f-9bef-11db60dbbfeb", "name": "Avanza", "type": "light"}]}]}, {"id": "9c1cb88f-2444-4f0d-9822-f6d2afdc88e8", "name": "GrowingIO", "tags": [], "issuers": [], "match_rules": [{"text": "GrowingIO", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GrowingIO", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "df2e67af-c0d4-4df7-9d14-69126c64b63b", "name": "GrowingIO", "icons": [{"id": "8b3d7437-e474-460e-9c32-bd671c95cf3e", "name": "GrowingIO", "type": "light"}, {"id": "ec3177e5-1039-4601-bcde-180473a05df4", "name": "GrowingIO", "type": "dark"}]}]}, {"id": "9c1f64f8-a5f7-40a6-a998-47e581977ec5", "name": "Mailersend", "tags": [], "issuers": [], "match_rules": [{"text": "Mailersend", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mailersend", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "68ba2620-b4d0-48be-962f-59c720fa92fb", "name": "Mailersend", "icons": [{"id": "5c837a03-9899-4841-a917-d835a9d51346", "name": "Mailersend", "type": "light"}]}]}, {"id": "9c533ef6-9f9a-485c-8809-3bf908c52aa4", "name": "bugcrowd", "tags": [], "issuers": [], "match_rules": [{"text": "bugcrowd", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "bugcrowd", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ec70005a-f837-48ba-9117-0fe03e7bb81f", "name": "bugcrowd", "icons": [{"id": "345d8df1-6332-4505-a503-25f284d4f4a8", "name": "bugcrowd", "type": "light"}]}]}, {"id": "9c5d6c41-d71e-4a0d-84ab-831ad87e2c5a", "name": "Unbounce", "tags": [], "issuers": [], "match_rules": [{"text": "Unbounce", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Unbounce", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "376a6bd3-1449-4244-840d-d08d5c3acaae", "name": "Unbounce", "icons": [{"id": "68200bd2-3f0d-4861-974e-af6b688715cf", "name": "Unbounce", "type": "dark"}, {"id": "9e54ff34-e89d-4cdc-9263-9dfdcb2c6f26", "name": "Unbounce", "type": "light"}]}]}, {"id": "9ca2ce09-7ed9-4c96-88e7-33274eac15bb", "name": "Leaseweb", "tags": [], "issuers": [], "match_rules": [{"text": "Leaseweb", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Leaseweb", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fcdc5ad7-184b-4332-8e15-53315d459519", "name": "Leaseweb", "icons": [{"id": "15dd1caf-9470-4d78-aac7-596558102fc1", "name": "Leaseweb", "type": "light"}]}]}, {"id": "9cefb4c2-714c-4270-acf9-7e48bf8a890c", "name": "Moqups", "tags": [], "issuers": [], "match_rules": [{"text": "Moqups", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Moqups", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e37a7bed-c7e7-40fd-99ef-4d2d214da6a8", "name": "Moqups", "icons": [{"id": "7e834535-aea6-4c10-88fe-8de965787758", "name": "Moqups", "type": "light"}]}]}, {"id": "9d099211-c570-47b6-9d18-e6b72d250cd2", "name": "CoinGate", "tags": [], "issuers": [], "match_rules": [{"text": "CoinGate", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinGate", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4f1c6aab-1f7c-4d17-914c-75998b04bead", "name": "CoinGate", "icons": [{"id": "cddcb531-879b-4c06-8add-9c31ce33ce2b", "name": "CoinGate", "type": "light"}]}]}, {"id": "9da37985-6d4e-4e30-a2cc-449ba401d8cf", "name": "Opera", "tags": [], "issuers": ["auth.opera.com"], "match_rules": [], "icons_collections": [{"id": "7d835694-5335-41c1-985d-eec3a1836fee", "name": "Opera", "icons": [{"id": "d299da6d-c1df-4433-91fa-b92d64355eef", "name": "Opera", "type": "light"}]}]}, {"id": "9dc2a1fd-7a2f-4e9e-8141-16d343f09009", "name": "UKFast", "tags": [], "issuers": [], "match_rules": [{"text": "UKFast", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "UKFast", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "423805d9-a642-4b2f-bf9a-7720449f5a10", "name": "UKFast", "icons": [{"id": "269862a4-83e8-4b85-b7e5-ad2521deb910", "name": "UKFast", "type": "dark"}, {"id": "50e3834e-bc7f-4ce8-b591-df2134979407", "name": "UKFast", "type": "light"}]}]}, {"id": "9debd9d2-1fcf-4912-abdf-ef2f641806a0", "name": "Nominet", "tags": [], "issuers": [], "match_rules": [{"text": "Nominet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nominet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c103676d-9cb5-4d54-86c2-341c2651ed5b", "name": "Nominet", "icons": [{"id": "4c906abc-8f9f-4951-b173-5f0c1f336ff6", "name": "Nominet", "type": "light"}]}]}, {"id": "9df06e77-ccc5-4b90-9486-c5f849807410", "name": "Uniregistry", "tags": [], "issuers": [], "match_rules": [{"text": "Uniregistry", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Uniregistry", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0153a9b6-bd72-4984-82a3-37c7b540b166", "name": "Uniregistry", "icons": [{"id": "60f0c909-ed9a-4180-bdca-810d903c16ec", "name": "Uniregistry", "type": "light"}]}]}, {"id": "9df3f288-9201-477c-9b6f-6a8163f5b980", "name": "Bitbucket", "tags": [], "issuers": ["Bitbucket"], "match_rules": [], "icons_collections": [{"id": "b2b3f344-5cbd-439f-b0c0-cefcad6a21f5", "name": "Bitbucket", "icons": [{"id": "71ed4546-173e-4368-901d-093d89a1b273", "name": "Bitbucket", "type": "light"}]}]}, {"id": "9e13f24a-774d-4d11-b3ea-b688cf3ff82c", "name": "Gamdom", "tags": [], "issuers": ["gamdom.com"], "match_rules": [], "icons_collections": [{"id": "72f23523-5859-418b-8b99-420062258bd7", "name": "Gamdom", "icons": [{"id": "a70142c6-8c82-45a2-93e1-7dc7b67c9a75", "name": "Gamdom", "type": "light"}]}]}, {"id": "9e3718c1-48aa-41fa-b3bb-1650def9b521", "name": "Mapbox", "tags": [], "issuers": [], "match_rules": [{"text": "Mapbox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mapbox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "efe0e629-2549-4692-8e03-d082fc400a38", "name": "Mapbox", "icons": [{"id": "74fe4eb5-f7c5-4226-87b2-e422cabfb5e5", "name": "Mapbox", "type": "light"}, {"id": "bd9363cd-836d-4adf-8e02-2a8551bfb29b", "name": "Mapbox", "type": "dark"}]}]}, {"id": "9e5a263d-8875-49bc-be88-126323aabadd", "name": "Detectify", "tags": [], "issuers": [], "match_rules": [{"text": "Detectify", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Detectify", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "febaa266-330a-41f4-8b19-f6023736db98", "name": "Detectify", "icons": [{"id": "aa4c63ba-bc55-4c8b-8087-9720f761f533", "name": "Detectify", "type": "light"}]}]}, {"id": "9e654a3a-de47-4bfe-8014-1680fce77452", "name": "Hotbit", "tags": [], "issuers": ["HOTBIT"], "match_rules": null, "icons_collections": [{"id": "6bb5522a-8979-4a04-8c72-a59552268a23", "name": "Hotbit", "icons": [{"id": "f3c57c47-0d93-40a3-a41b-fe89b86495c4", "name": "Hotbit", "type": "light"}]}]}, {"id": "9ee1cd91-d80e-4322-b896-a2415dd077b0", "name": "Alchemer", "tags": [], "issuers": [], "match_rules": [{"text": "Alchemer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Alchemer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e9812a04-3ab7-4039-9207-33e52fc5c92b", "name": "Alchemer", "icons": [{"id": "2838c31c-65fe-42ea-bd8d-eaa0517a4efb", "name": "Alchemer", "type": "light"}]}]}, {"id": "9f1bcfe9-a951-4370-afcd-acea35a0243b", "name": "Linode", "tags": [], "issuers": ["Linode"], "match_rules": null, "icons_collections": [{"id": "db619e49-9393-4cf5-808e-354157d98325", "name": "Linode", "icons": [{"id": "cf95f4c2-71c2-4c53-8358-230d3fc90400", "name": "Linode", "type": "light"}]}]}, {"id": "9f4e2bc6-6b23-4e09-92f5-203165ec76df", "name": "TurboTax", "tags": ["intuit"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "1cf1197b-940e-4ab3-8fbb-261b6cb1d464", "name": "TurboTax", "icons": [{"id": "34a41dd8-2265-430b-999c-02673eaa230f", "name": "TurboTax", "type": "light"}]}]}, {"id": "9f8cde87-cdbe-4551-b2de-7829a2fe9f42", "name": "ActiveCampaign", "tags": [], "issuers": [], "match_rules": [{"text": "ActiveCampaign", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ActiveCampaign", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Active Campaign", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Active Campaign", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d77f98d5-d64c-4237-b343-a50219bc5226", "name": "ActiveCampaign", "icons": [{"id": "edfa9f2f-4b7f-4ed1-95b3-e9eff332e283", "name": "ActiveCampaign", "type": "light"}]}]}, {"id": "9fa4fa21-ee4f-4049-97bc-5e43b93ecf86", "name": "Workflowy", "tags": [], "issuers": [], "match_rules": [{"text": "Workflowy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Workflowy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2ef26634-ef90-491e-a548-4e1f52a7fbd5", "name": "Workflowy", "icons": [{"id": "42ff1cc4-53bc-4c9d-911a-2db71dd596ef", "name": "Workflowy", "type": "light"}]}]}, {"id": "a019e22a-fbb3-48b9-b22a-fb076410a5e3", "name": "State Department Federal Credit Union", "tags": ["sdfcu"], "issuers": [], "match_rules": [{"text": "State Department Federal Credit Union", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "State Department Federal Credit Union", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c00d5b8d-8b3b-48a6-830c-798bf722759a", "name": "State Department Federal Credit Union", "icons": [{"id": "8ad8645c-c24f-4f1c-93a1-542ce74ed89e", "name": "State Department Federal Credit Union", "type": "light"}, {"id": "8b3d30ed-bb53-497e-97bf-fba5048f3919", "name": "sdfcu", "type": "dark"}]}]}, {"id": "a069b715-d9cf-4be4-aaf2-c54e87fed81c", "name": "MeshCentral", "tags": [], "issuers": [], "match_rules": [{"text": "MeshCentral.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "fa910f5c-1af2-458b-ad3b-163e9a5dbefb", "name": "MeshCentral", "icons": [{"id": "80a3beb1-0a5c-420e-bac6-96c5a22609f7", "name": "MeshCentral", "type": "light"}]}]}, {"id": "a074d141-f92e-4521-971f-63304a45fedf", "name": "Skiff", "tags": [], "issuers": ["Skiff"], "match_rules": null, "icons_collections": [{"id": "75595ad0-66c7-4bfc-a47d-99c001a4df12", "name": "Skiff", "icons": [{"id": "2f78fde3-3191-4b74-a1fc-d3f89cffbf54", "name": "Skiff", "type": "light"}, {"id": "d97d89ca-8bf5-4d7f-99c0-b017f7544ca3", "name": "Skiff", "type": "dark"}]}]}, {"id": "a11a5e88-2d35-46eb-be74-93fa5a206a17", "name": "Finary", "tags": [], "issuers": [], "match_rules": [{"text": "Finary", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Finary", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ed111ecb-eef4-40c2-9efa-6068957d3a55", "name": "Finary", "icons": [{"id": "746c51b5-f531-488b-8f30-781058d5aea0", "name": "Finary", "type": "light"}]}]}, {"id": "a1478180-6491-4a0b-bb5e-fc2441091de6", "name": "TrueNAS Community", "tags": [], "issuers": ["TrueNAS%20Community", "TrueNAS Community", "TrueNAS+Community"], "match_rules": [], "icons_collections": [{"id": "3a66c19d-d186-45a2-b156-9d4a1aa9581f", "name": "TrueNAS Community", "icons": [{"id": "292af08e-fbf9-4847-8635-1a33f1e652c0", "name": "TrueNAS Community", "type": "light"}]}]}, {"id": "a174bbba-0ff5-4827-acfb-ab661e5a59b9", "name": "Pluralsight", "tags": [], "issuers": ["Pluralsight"], "match_rules": null, "icons_collections": [{"id": "ab7d3bee-5a6b-4c0a-bed5-efcb5e9eb61f", "name": "Pluralsight", "icons": [{"id": "9da1b811-4221-4ce9-8376-81ab6f0079fc", "name": "Pluralsight", "type": "light"}]}]}, {"id": "a17d84e3-2644-4400-a6bb-5a5af797677f", "name": "NAGA", "tags": [], "issuers": [], "match_rules": [{"text": "NAGA", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NAGA", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1b1aefd6-acb6-4a4d-8c71-85cae9896816", "name": "NAGA", "icons": [{"id": "b8b6861d-55c8-4915-9752-4c9f4ee9a5ea", "name": "NAGA", "type": "light"}]}]}, {"id": "a1ab7203-de30-442e-a360-20a2ae8e2f69", "name": "Klaviyo", "tags": [], "issuers": [], "match_rules": [{"text": "Klaviyo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Klaviyo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e5d6b9e5-eec7-44f5-af2c-da4f85b3be2d", "name": "Klaviyo", "icons": [{"id": "1dc48c3d-6c04-470a-a4f5-38665378a316", "name": "Klaviyo", "type": "light"}, {"id": "2cd686a2-0d22-48e5-99f1-34d6d2a36874", "name": "Klaviyo", "type": "dark"}]}]}, {"id": "a1e831a2-8d82-4e55-a3a5-cf12a468fa4a", "name": "Datto", "tags": [], "issuers": [], "match_rules": [{"text": "Datto", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Datto", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1bfdab50-f6b4-40e0-b819-93f876eba5b8", "name": "Datto", "icons": [{"id": "3624d379-25d4-43a0-b106-ed9136fd11ff", "name": "Datto", "type": "light"}]}]}, {"id": "a2987ab4-ac5c-48ce-863c-d3d3d1220fdb", "name": "X", "tags": ["twitter"], "issuers": ["Twitter"], "match_rules": [], "icons_collections": [{"id": "9889f776-434d-46ab-97ee-ef2ad88fe615", "name": "X", "icons": [{"id": "2a71868c-92d3-450d-9ab2-34841eaf7ad6", "name": "x", "type": "light"}, {"id": "d162466b-13cc-4ffb-90f5-26918cee33f9", "name": "x", "type": "dark"}]}]}, {"id": "a36d8440-359e-4dd4-ab13-31f43c77a7fd", "name": "BuiltWith", "tags": [], "issuers": [], "match_rules": [{"text": "BuiltWith", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BuiltWith", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ec674f0f-9069-4b64-97fe-b56efb2b8693", "name": "BuiltWith", "icons": [{"id": "8b277c31-3569-4ff6-8dfc-135826075b84", "name": "BuiltWith", "type": "light"}]}]}, {"id": "a36f94b7-a60a-409c-9e4a-edcbe0d0c2da", "name": "CoinSmart", "tags": [], "issuers": [], "match_rules": [{"text": "CoinSmart", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinSmart", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "165ab569-c5f1-417b-862d-de6d9d1d0429", "name": "CoinSmart", "icons": [{"id": "ebd8f925-02da-4d85-8207-a04054280365", "name": "CoinSmart", "type": "light"}]}]}, {"id": "a3969bda-b6ca-47c3-9512-4be3c7a174e8", "name": "CDN77", "tags": [], "issuers": [], "match_rules": [{"text": "CDN77", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CDN77", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6d430cb8-8891-4504-9e1e-81ce542ac99e", "name": "CDN77", "icons": [{"id": "2acdec45-4531-47d8-a89a-6c8dce3780d6", "name": "CDN77", "type": "dark"}, {"id": "b1c356d3-8666-4f15-8b5b-b5c5257f502a", "name": "CDN77", "type": "light"}]}]}, {"id": "a3c86b49-ff27-4072-bc93-ff7b80d0b380", "name": "Front App", "tags": [], "issuers": [], "match_rules": [{"text": "Front App", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Front App", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "248f1f1f-5270-40a2-950c-7dc4a4a21722", "name": "Front App", "icons": [{"id": "307990f3-d74f-4b0f-8704-12840197ed7b", "name": "Front App", "type": "dark"}, {"id": "cfed65e7-5538-40d3-8ea4-d5492030cf5d", "name": "Front App", "type": "light"}]}]}, {"id": "a3d0f49a-23ed-4c1d-b1a6-47232f4e624d", "name": "Monex", "tags": [], "issuers": [], "match_rules": [{"text": "Monex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Monex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d2c71713-f6f1-4da0-a5f6-f7ad54e8b2a9", "name": "Monex", "icons": [{"id": "3f1eb3e0-fa24-4d33-bef4-b1d1a42b64df", "name": "Monex", "type": "dark"}, {"id": "b104b787-5236-4cb3-b55b-6b89ca303f76", "name": "Monex", "type": "light"}]}]}, {"id": "a3f0564c-f03f-4afa-9443-e75426b3645d", "name": "Lokalise", "tags": [], "issuers": [], "match_rules": [{"text": "Lokalise", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Lokalise", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f977f700-f586-4c5e-8a31-62b940100b96", "name": "Lokalise", "icons": [{"id": "862dfac6-3eb8-41e6-a18c-352dbaba46fd", "name": "Lokalise", "type": "light"}]}]}, {"id": "a42d9f55-c8f8-409d-93a8-d2a8cb23e54d", "name": "RightCapital", "tags": [], "issuers": [], "match_rules": [{"text": "RightCapital", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RightCapital", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "009c2b57-caf0-4dbe-a129-8ad8a9d1df7b", "name": "RightCapital", "icons": [{"id": "25c6f9da-2991-4b7a-b3ae-81f9b3d98d09", "name": "RightCapital", "type": "light"}]}]}, {"id": "a44366c0-42f8-4164-8880-6e1b52634293", "name": "Passbolt", "tags": [], "issuers": [], "match_rules": [{"text": "Passbolt", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0aa806db-7b34-4387-91bd-08d4547b0b4a", "name": "Passbolt", "icons": [{"id": "f176e900-a68c-44db-800e-52433d1631ae", "name": "Passbolt", "type": "light"}]}]}, {"id": "a45a6c25-fc03-48c6-a2d5-c160c3d51f45", "name": "NO-IP", "tags": [], "issuers": ["noip.com"], "match_rules": [], "icons_collections": [{"id": "6bef5540-2e6d-4125-90ac-88905ae42fc3", "name": "NO-IP", "icons": [{"id": "b780b9d9-e6f0-48dd-8fbf-74a3e0a9b3d4", "name": "NO-IP", "type": "light"}]}]}, {"id": "a4a5dbe8-2109-41ee-9fe9-1efec46346b6", "name": "GameMaker", "tags": [], "issuers": [], "match_rules": [{"text": "GameMaker", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GameMaker", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "708b76e7-6713-4c7b-9bc1-ed8bce6360cb", "name": "GameMaker", "icons": [{"id": "9025978a-a59f-4184-a06d-e71779a8ec4a", "name": "GameMaker", "type": "dark"}, {"id": "cbe05ecf-2c2b-4e3e-9227-b7d0992f6988", "name": "GameMaker", "type": "light"}]}]}, {"id": "a5015cda-7770-4cf9-a1b5-afb955ba719d", "name": "Traderie", "tags": [], "issuers": ["Traderie"], "match_rules": null, "icons_collections": [{"id": "5978bde2-1244-481d-9d4c-061c531f9081", "name": "Traderie", "icons": [{"id": "df93c38c-46e3-4780-b02e-5f98c3f32ae6", "name": "Traderie", "type": "light"}]}]}, {"id": "a544dede-602a-4b3b-b8dd-4ff63f49d1ee", "name": "DNSMadeEasy", "tags": [], "issuers": [], "match_rules": [{"text": "dnsmadeeasy.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e8a6ae67-564c-4686-9078-5607b7b7f225", "name": "DNSMadeEasy", "icons": [{"id": "8fd5efe4-2548-4789-b6b1-d1a526b67b82", "name": "DNSMadeEasy", "type": "light"}]}]}, {"id": "a566f7d3-7c9c-4dfb-ab4e-2c40e4517184", "name": "Tilaa", "tags": [], "issuers": [], "match_rules": [{"text": "Tilaa", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tilaa", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2788457b-f9a1-45f3-b453-18de6a706464", "name": "Tilaa", "icons": [{"id": "b8c10d0d-4941-4255-b9c9-b14db0489f17", "name": "Tilaa", "type": "light"}]}]}, {"id": "a5a996f7-8b59-4bb6-8d02-42b547a6f654", "name": "SkySilk", "tags": [], "issuers": ["www.skysilk.com"], "match_rules": null, "icons_collections": [{"id": "ac919310-c2f0-4df2-8159-5f809715dbae", "name": "SkySilk", "icons": [{"id": "9bf8912c-a7e0-4ac9-a8d4-ea9b4c473c25", "name": "SkySilk", "type": "light"}, {"id": "b6b0b2d9-1f77-4d27-b04f-f725636cc3e3", "name": "SkySilk", "type": "dark"}]}]}, {"id": "a5dcc1f5-59be-4fdb-ac4f-23363130f6c6", "name": "Balena", "tags": [], "issuers": [], "match_rules": [{"text": "Balena", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Balena", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0a2fb648-547d-4295-8395-9541530e5fca", "name": "Balena", "icons": [{"id": "bbdc9f84-a3e9-4e62-b3ff-db5a6e934b1c", "name": "Balena", "type": "light"}]}]}, {"id": "a5ed7742-3798-40f6-affc-8bb459af80ea", "name": "Uphold", "tags": [], "issuers": ["Uphold"], "match_rules": [], "icons_collections": [{"id": "4a3bf3c0-68c8-4aa7-809c-c3962ea0c564", "name": "Uphold", "icons": [{"id": "8c80a490-7149-4ea8-8a73-e558f1bafb5b", "name": "Uphold", "type": "light"}]}]}, {"id": "a657edfe-7d07-4183-a409-0e6f7a0e0564", "name": "WePay", "tags": [], "issuers": [], "match_rules": [{"text": "WePay", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "WePay", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d75a84bb-3750-4f77-a889-1de5a743771f", "name": "WePay", "icons": [{"id": "a33bda86-4346-4738-ab4b-b3e2f3054c6e", "name": "WePay", "type": "light"}]}]}, {"id": "a6625835-3c28-42cd-820d-2ebcc08320d0", "name": "Patreon", "tags": [], "issuers": ["Patreon"], "match_rules": [], "icons_collections": [{"id": "2bfe0cfc-b557-4f2d-988c-72015254b671", "name": "Patreon", "icons": [{"id": "ec5d42f4-7286-4f89-bd26-2d772a656d5d", "name": "Patreon", "type": "light"}]}]}, {"id": "a68bc354-0466-4fd8-bcbf-d9998b694867", "name": "LaunchDarkly", "tags": [], "issuers": [], "match_rules": [{"text": "LaunchDarkly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LaunchDarkly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "03c68d8e-d646-48aa-8d7d-904fcc13c61a", "name": "LaunchDarkly", "icons": [{"id": "8f30db2f-0e96-4788-b229-a8b3d843800b", "name": "LaunchDarkly", "type": "light"}, {"id": "eb1292f3-04a4-492d-8589-d27e6ba2509f", "name": "LaunchDarkly", "type": "dark"}]}]}, {"id": "a691df14-874d-4250-8180-48d05cdb2989", "name": "Heap", "tags": [], "issuers": [], "match_rules": [{"text": "Heap", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Heap", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9973600d-8da5-4a1d-85a3-11928fd80984", "name": "Heap", "icons": [{"id": "87e3b6b6-ad09-47ec-823f-7ca417a029d4", "name": "Heap", "type": "light"}]}]}, {"id": "a69987ef-9334-4bee-adfa-ee94dda00c65", "name": "VPS Server", "tags": [], "issuers": [], "match_rules": [{"text": "VPS Server", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VPS Server", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d82bd671-e134-4c9b-b121-9bcd1005213e", "name": "VPS Server", "icons": [{"id": "c4af5777-fa40-4147-a802-b37a5050b49e", "name": "VPS Server", "type": "light"}]}]}, {"id": "a7354baa-0a57-4003-b0c8-85cd7a19f32f", "name": "Paxos", "tags": [], "issuers": [], "match_rules": [{"text": "Paxos", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Paxos", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f2df791b-6e80-47aa-895d-412748d2a83f", "name": "Paxos", "icons": [{"id": "4e343d3a-0653-43fa-9d6a-77cd61e2ab00", "name": "Paxos", "type": "light"}]}]}, {"id": "a7516a9c-2dbd-4aba-8e9d-50a6d8815c7d", "name": "Fly", "tags": [], "issuers": ["Fly.io"], "match_rules": null, "icons_collections": [{"id": "75d24465-2516-4598-a709-d28bbc17337b", "name": "Fly", "icons": [{"id": "6b40fb75-f2c3-4f6f-b1f1-b62617f241a0", "name": "Fly", "type": "light"}]}]}, {"id": "a7579fcc-ee5e-4b90-85c3-daac271a5cf2", "name": "Cloze", "tags": [], "issuers": [], "match_rules": [{"text": "Cloze", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cloze", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5ac41237-810b-4cc1-8ad2-1c27ad35bb3a", "name": "Cloze", "icons": [{"id": "86a869fd-688b-4799-ac2c-9777ca860e4e", "name": "Cloze", "type": "light"}]}]}, {"id": "a770e137-11ec-4785-924c-2cda2bae0495", "name": "Whimsical", "tags": [], "issuers": [], "match_rules": [{"text": "Whimsical", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Whimsical", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3db07ff5-3a8f-4119-8266-befcd9059469", "name": "Whimsical", "icons": [{"id": "6e589600-c506-4261-9981-8badf5daf94d", "name": "Whimsical", "type": "light"}]}]}, {"id": "a7cf31a1-1b33-4456-8c88-567e100b4b9c", "name": "Nifty", "tags": [], "issuers": [], "match_rules": [{"text": "Nifty", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nifty", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "254f7c6b-3c1a-4237-a231-487022df0dc4", "name": "Nifty", "icons": [{"id": "efb8cd9e-2241-4c63-b84e-7f6eee825bb2", "name": "Nifty", "type": "light"}]}]}, {"id": "a802da64-b4ab-4d0f-8b9b-4c06f8b74c5c", "name": "Star Wars: The Old Republic", "tags": ["swtor"], "issuers": [], "match_rules": [], "icons_collections": [{"id": "4929f295-0bcc-4a10-8150-1b206f2244c9", "name": "Star Wars: The Old Republic", "icons": [{"id": "6aa09296-0ed4-486f-859e-75786ff68eaa", "name": "Star Wars: The Old Republic", "type": "light"}]}]}, {"id": "a85b7921-5da3-43af-ba05-9aac1fc9a6d4", "name": "DX Email PRO", "tags": [], "issuers": ["DX Email PRO"], "match_rules": [], "icons_collections": [{"id": "bebe73c4-8079-42ac-b735-5b991367ca25", "name": "DX Email PRO", "icons": [{"id": "21591868-7f1c-47b5-820f-f2fedf46a2fa", "name": "DX Email PRO", "type": "dark"}, {"id": "c033791a-99e9-45fa-b3ee-42f599436416", "name": "DX Email PRO", "type": "light"}]}]}, {"id": "a87e9253-5ba7-43ef-98a6-5fad3f0920c5", "name": "UK2", "tags": [], "issuers": [], "match_rules": [{"text": "UK2", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "UK2", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5f2c6c03-047f-4029-89bf-bbdc31b6be76", "name": "UK2", "icons": [{"id": "11ed7201-c1f8-4c66-952e-66e068790a99", "name": "UK2", "type": "dark"}, {"id": "cd48ba6a-02f4-4b13-96a5-6d2e27bd9818", "name": "UK2", "type": "light"}]}]}, {"id": "a91236c4-50a2-45ca-ae96-b8d71252a236", "name": "Sophos", "tags": [], "issuers": [], "match_rules": [{"text": "Sophos", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sophos", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bbfaee36-3576-4b48-af93-2bd24166ead0", "name": "Sophos", "icons": [{"id": "e81e852f-ba65-4bda-91f7-fe3eead097a2", "name": "Sophos", "type": "light"}]}]}, {"id": "a916b5e1-627b-4e23-b690-81b33c4b701a", "name": "34SP.com", "tags": [], "issuers": [], "match_rules": [{"text": "34SP", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "34SP", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "87ffdb0e-82aa-4571-99e1-c2506b4267db", "name": "34SP.com", "icons": [{"id": "8c5ae147-d092-445c-828f-abb9c2b8f48a", "name": "34SP.com", "type": "light"}]}]}, {"id": "a9f9deeb-c0db-447c-9316-0bcc5c17d81d", "name": "OKX", "tags": [], "issuers": [], "match_rules": [{"text": "OKX.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "40dd3926-f325-4421-883a-f9051b0dcf3e", "name": "OKX", "icons": [{"id": "63b19be4-9062-43fa-82a4-2f84781370ff", "name": "OKX", "type": "light"}, {"id": "7ff47874-d72c-40a5-9d7b-19523000a60b", "name": "OKX", "type": "dark"}]}]}, {"id": "aa38d4c4-e405-4e28-8cd3-e8b0ecae366f", "name": "NiceHash", "tags": [], "issuers": [], "match_rules": [{"text": "NiceHash", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NiceHash", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d7ff6819-7733-4231-8671-29c3c3b51030", "name": "NiceHash", "icons": [{"id": "1757a974-1d1c-441c-b1e6-0e4e6b67a1c3", "name": "NiceHash", "type": "light"}]}]}, {"id": "aae63726-a3fe-4ba9-abe1-173f1bfb590f", "name": "ImmobilienScout24", "tags": [], "issuers": [], "match_rules": [{"text": "ImmobilienScout24", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ImmobilienScout24", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "93355c73-a8e2-4c4b-9bb4-e15525ec3047", "name": "ImmobilienScout24", "icons": [{"id": "aa7631db-5626-4395-8d19-997cc2582ab7", "name": "ImmobilienScout24", "type": "light"}, {"id": "b5c0449f-e6ee-4a60-9ed1-ccf28207d08e", "name": "ImmobilienScout24", "type": "dark"}]}]}, {"id": "aaf4136b-6489-4e34-ba8d-ba2377bc61ee", "name": "FreeAgent", "tags": [], "issuers": [], "match_rules": [{"text": "FreeAgent", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FreeAgent", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eb504a22-6e98-4b51-93da-e3b9e59f844e", "name": "FreeAgent", "icons": [{"id": "9289b728-cdae-4188-9408-066424174171", "name": "FreeAgent", "type": "light"}]}]}, {"id": "ab5170d5-098b-4d87-a248-64badb66cfb3", "name": "Parsec", "tags": [], "issuers": ["Parsec"], "match_rules": [], "icons_collections": [{"id": "a850b2e8-1f72-4a6e-85f7-9023bc57c75f", "name": "Parsec", "icons": [{"id": "8da2e4f3-643e-41bb-b0e1-c4112a322f51", "name": "Parsec", "type": "light"}]}]}, {"id": "abfd0524-ad3a-455c-9ff1-e2894c68c2e5", "name": "BambooHR", "tags": [], "issuers": [], "match_rules": [{"text": "BambooHR", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BambooHR", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6d47ef7e-bc56-4358-bdac-45a7d4ffce2f", "name": "BambooHR", "icons": [{"id": "bc7bcf5f-813c-40c9-b860-89b64f92c39a", "name": "BambooHR", "type": "light"}]}]}, {"id": "ac38233e-f4b3-47ba-b045-9cf8a6619749", "name": "Olymp Trade", "tags": [], "issuers": ["Olymp Trade"], "match_rules": null, "icons_collections": [{"id": "7bee53fc-f205-4a92-8984-ca0a11a9fe92", "name": "Olymp Trade", "icons": [{"id": "80b27509-c997-4b02-92a3-edd176b7c2c8", "name": " Olymp Trade", "type": "light"}, {"id": "e2546a37-becb-47af-9d65-4e1ef4ac01cc", "name": " Olymp Trade", "type": "dark"}]}]}, {"id": "ac419cfc-9ba0-4e30-9cde-236efd67509b", "name": "OMGServ", "tags": [], "issuers": [], "match_rules": [{"text": "OMGServ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OMGServ", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8f5297c8-1fe6-4dbf-8861-63fe69e63f1e", "name": "OMGServ", "icons": [{"id": "201a209f-ceaa-4f3b-88fa-2f7fa8d5fc30", "name": "OMGServ", "type": "light"}, {"id": "e3887317-89dd-468f-b615-744841442d8d", "name": "OMGServ", "type": "dark"}]}]}, {"id": "ac5c9325-8874-4183-9fcb-f6dcab179dca", "name": "FPT Corporation", "tags": [], "issuers": ["FPT"], "match_rules": null, "icons_collections": [{"id": "7e555152-7186-417f-8fee-573c24fe73e8", "name": "FPT Corporation", "icons": [{"id": "c47431c3-bed9-4fa3-86ed-619c9cb0e250", "name": "FPT Corporation", "type": "dark"}, {"id": "f13050b1-a66c-42e8-be66-47a68d5f2318", "name": "FPT Corporation", "type": "light"}]}]}, {"id": "ac8c167d-82e0-4d49-ab51-7e73b96a7789", "name": "Bitrix24", "tags": [], "issuers": [], "match_rules": [{"text": "Bitrix24", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitrix24", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5b1c87ec-4b04-4649-b09d-f59ce1ac0942", "name": "Bitrix24", "icons": [{"id": "e7810126-a306-4ce7-8f1c-9a11d58c0d61", "name": "Bitrix24", "type": "light"}]}]}, {"id": "acc35462-61b8-4573-b638-24466631d31f", "name": "Wolf.bet", "tags": [], "issuers": [], "match_rules": [{"text": "Wolf.bet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wolf.bet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eaf0b27d-33ab-419c-94a3-810ac5fbac91", "name": "Wolf.bet", "icons": [{"id": "30323a40-b0b4-4c28-9561-28dfeb7332c0", "name": "Wolf.bet", "type": "dark"}, {"id": "b2945220-5041-4265-9de3-7d0ec919551b", "name": "Wolf.bet", "type": "light"}]}]}, {"id": "ad4d1c0e-382d-424e-be1b-7a6f83874e51", "name": "Pushover", "tags": [], "issuers": ["Pushover"], "match_rules": null, "icons_collections": [{"id": "d2b279ed-90ca-4aa4-b02f-45e98aa008f5", "name": "Pushover", "icons": [{"id": "57324839-b333-48ee-9ee1-f464cf303e1c", "name": "Pushover", "type": "light"}]}]}, {"id": "ad6a5114-6205-4478-bbe2-36c63927fcbe", "name": "Rapidgator", "tags": [], "issuers": ["http://rapidgator.net"], "match_rules": null, "icons_collections": [{"id": "54e1c26d-6596-4184-b0de-dd72b4dd52dc", "name": "Rapidgator", "icons": [{"id": "2c850581-7362-4178-9438-bb9154c5a861", "name": "Rapidgator", "type": "light"}]}]}, {"id": "ad743cca-49f6-4910-95a4-f6a0e0533fc2", "name": "IDrive", "tags": [], "issuers": [], "match_rules": [{"text": "IDrive", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IDrive", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f32c6479-19d4-4a9d-8b37-85dd94629636", "name": "IDrive", "icons": [{"id": "51468b78-1e2d-4783-b3fd-f9418824e2d3", "name": "IDrive", "type": "light"}]}]}, {"id": "adcac151-c9a7-4eac-b65e-28c30cfe9282", "name": "Betfair", "tags": [], "issuers": [], "match_rules": [{"text": "Betfair", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Betfair", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8cc8707f-3e96-4644-826a-56fc3c4dc7f2", "name": "Betfair", "icons": [{"id": "7df668bb-c780-4e83-8d78-bf74432c2ad1", "name": "Betfair", "type": "light"}, {"id": "946d2771-b4c4-49b1-a7dc-a25d42170845", "name": "Betfair", "type": "dark"}]}]}, {"id": "ae853d4d-cf42-43b3-a2a8-4bd61536a9e7", "name": "Adobe", "tags": [], "issuers": ["Adobe ID"], "match_rules": [], "icons_collections": [{"id": "372c450d-4334-4585-bdd9-fe3b8d962d0a", "name": "Adobe", "icons": [{"id": "796e7b5c-2b0f-4f9a-8a24-ceb290909bfe", "name": "Adobe", "type": "light"}]}]}, {"id": "aedeca67-57d4-450d-9737-f7db26fa4e46", "name": "tastyworks", "tags": [], "issuers": ["tastyworks"], "match_rules": [], "icons_collections": [{"id": "6200f337-54c3-4e74-8100-ef405f767460", "name": "tastyworks", "icons": [{"id": "892eb0ca-5a55-4018-92d9-027961f9be59", "name": "tastyworks", "type": "light"}]}]}, {"id": "af40f895-e851-42d3-96e9-8015579dd018", "name": "Supabase", "tags": [], "issuers": ["app.supabase.com"], "match_rules": null, "icons_collections": [{"id": "4d172e2a-2e36-43af-a960-0650aa8c2e4a", "name": "Supabase", "icons": [{"id": "6d01c39f-11df-427e-9544-b0ee2fd88e7c", "name": "Supabase", "type": "light"}]}]}, {"id": "af78a598-da12-473d-8e83-b95cfe0d3384", "name": "Sentry", "tags": [], "issuers": ["Sentry"], "match_rules": [], "icons_collections": [{"id": "e5c1469c-c522-4dbf-973d-5c6f1aa54ea8", "name": "Sentry", "icons": [{"id": "4daa5745-8563-46a9-a86b-06b1dc368b3a", "name": "Sentry", "type": "dark"}, {"id": "b834e082-9c3b-4d3a-adc8-ceab46efd7dc", "name": "Sentry", "type": "light"}]}]}, {"id": "afa70642-ada9-4cb0-b1ba-f530b3d64e07", "name": "Presearch", "tags": [], "issuers": [], "match_rules": [{"text": "Presearch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Presearch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "02b9dc2d-9dbe-4c1c-ba2d-b4236cc6531c", "name": "Presearch", "icons": [{"id": "3c24d083-ca28-422a-9bc3-d413db80c4fa", "name": "Presearch", "type": "light"}, {"id": "8ae02378-cb96-4809-ac5c-309b06959c76", "name": "Presearch", "type": "dark"}]}]}, {"id": "b0616a8c-9fca-4ba3-8f67-13893706032f", "name": "Xbox Live", "tags": [], "issuers": [], "match_rules": [{"text": "xbox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "xbox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3dac779e-08d6-452f-9088-c1c6acd087d7", "name": "Xbox Live", "icons": [{"id": "3457f667-0f2e-487d-b50e-7d998b60755c", "name": "Xbox Live", "type": "light"}]}]}, {"id": "b08a2f47-2883-4190-861d-6042ee86d334", "name": "pCloud", "tags": [], "issuers": ["pCloud"], "match_rules": [], "icons_collections": [{"id": "96003caa-758c-493e-b177-ccd27ec3434a", "name": "pCloud", "icons": [{"id": "39cfaa27-7898-4fde-af77-5e18623b5a2b", "name": "pCloud", "type": "light"}]}]}, {"id": "b0a1e86b-baa4-43f5-b2c7-16dcac2120b5", "name": "Xero", "tags": [], "issuers": ["Xero"], "match_rules": [], "icons_collections": [{"id": "29a5bf72-7ee5-4c0a-a968-3dbdd3e0883f", "name": "Xero", "icons": [{"id": "3d89d56f-bd19-4144-84bb-cf29cba7b04c", "name": "Xero", "type": "light"}]}]}, {"id": "b13f2a89-177e-454c-ab6d-c6eadff138eb", "name": "Gravatar", "tags": [], "issuers": [], "match_rules": [{"text": "Gravatar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Gravatar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1a4e875c-f68e-49a9-a883-d0928169baed", "name": "Gravatar", "icons": [{"id": "f5f54ec9-cdfe-41a5-aafe-bad15e089830", "name": "Gravartar", "type": "light"}]}]}, {"id": "b16f2bad-b094-43e9-8347-e4a02c04a561", "name": "SourceForge", "tags": [], "issuers": ["SourceForge"], "match_rules": [], "icons_collections": [{"id": "98074517-7dc4-48c7-8b60-8ecf53090411", "name": "SourceForge", "icons": [{"id": "66c09e64-9766-4365-9e66-94419d6801cd", "name": "SourceForge", "type": "light"}]}]}, {"id": "b18932d2-4dde-49e7-8f28-6568958e376a", "name": "Coursera", "tags": [], "issuers": ["Coursera"], "match_rules": [], "icons_collections": [{"id": "f9a2cd0d-b4cd-4130-9c06-aa354cbbd221", "name": "Coursera", "icons": [{"id": "0be495e1-1c36-410a-a841-1b9ae2d3fbbb", "name": "Coursera", "type": "light"}]}]}, {"id": "b1a9346e-79d0-419c-9dd8-ddc57540db28", "name": "Accelo", "tags": [], "issuers": [], "match_rules": [{"text": "Accelo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Accelo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aab8250d-309f-4e4c-ab57-772dd7d73c40", "name": "Accelo", "icons": [{"id": "7102a698-c76c-4e5c-9a80-ff4daa5c4e9e", "name": "Accelo", "type": "light"}]}]}, {"id": "b1f353df-9c26-441b-a45e-53773cdc3821", "name": "Hosting Ukraine", "tags": [], "issuers": [], "match_rules": [{"text": "Hosting Ukraine", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hosting Ukraine", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d38ef48e-f3b1-4eea-b308-276e5e7a6547", "name": "Hosting Ukraine", "icons": [{"id": "1d7ea216-bd95-4702-b0f1-ba72cfd04f08", "name": "Hosting Ukraine", "type": "light"}]}]}, {"id": "b22d64e6-535e-421b-8ece-c6f4b5103ed7", "name": "Podio", "tags": [], "issuers": [], "match_rules": [{"text": "Podio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Podio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "88a21d7b-15df-4020-a713-69d880cca58e", "name": "Podio", "icons": [{"id": "89d1cb33-088f-4003-bff9-17b55583dc07", "name": "Podio", "type": "light"}]}]}, {"id": "b235239b-0ff5-4d74-babb-3a76e8dce4eb", "name": "GMX", "tags": [], "issuers": ["GMX"], "match_rules": [], "icons_collections": [{"id": "dcfa66e0-beee-4560-9946-1096a804c913", "name": "GMX", "icons": [{"id": "c6b86814-c06b-4f98-8f85-35d35bfe0963", "name": "GMX", "type": "light"}]}]}, {"id": "b280b90a-8c57-4dbe-8b54-1965ac1935dc", "name": "Cardmarket", "tags": [], "issuers": [], "match_rules": [{"text": "Cardmarket", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cardmarket", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "81ea442e-3146-40a3-9335-bdc5f9511f48", "name": "Cardmarket", "icons": [{"id": "240a44db-d55b-4d54-8d54-0e50d608203c", "name": "Cardmarket", "type": "light"}, {"id": "865248e7-8814-4f41-a4bf-4dad19b5ea24", "name": "Cardmarket", "type": "dark"}]}]}, {"id": "b2b6171a-438b-4e24-afa8-c89053a2b09c", "name": "CommunityAmerica", "tags": [], "issuers": [], "match_rules": [{"text": "CommunityAmerica", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CommunityAmerica", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f147d94a-2a3c-4c0c-8e20-5f32ee1a7fa3", "name": "CommunityAmerica", "icons": [{"id": "bed60005-c9f7-47fe-9124-b388376a7e3d", "name": "CommunityAmerica", "type": "light"}]}]}, {"id": "b2f42e95-caf9-40b4-aad1-4f7ec644129c", "name": "section.io", "tags": [], "issuers": [], "match_rules": [{"text": "section.io", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "section.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "94581656-fa9a-42da-9509-bc3c833f9424", "name": "section.io", "icons": [{"id": "39fb2ddd-fd38-4faa-986a-cc6c87c0e0e8", "name": "section.io", "type": "light"}]}]}, {"id": "b3170dcf-ac9e-4808-898a-b29a3e9dea44", "name": "cloudHQ", "tags": [], "issuers": [], "match_rules": [{"text": "cloudHQ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "cloudHQ", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "46afa877-a41a-4e3d-badf-ac749f78048e", "name": "cloudHQ", "icons": [{"id": "5c3e18a0-ab52-494e-b44e-c85490876a8d", "name": "cloudHQ", "type": "dark"}, {"id": "7d2bce29-4789-4c1c-8bf8-8dfa01cda79f", "name": "cloudHQ", "type": "light"}]}]}, {"id": "b34a2be5-9a4d-47a2-b51c-397593b17495", "name": "Tableau", "tags": [], "issuers": [], "match_rules": [{"text": "Tableau", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tableau", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5ed53cfb-6ec8-4301-93a5-c64e8feee5e5", "name": "Tableau", "icons": [{"id": "664948a7-1b35-480d-a90b-9c5d2cf32e57", "name": "Tableau", "type": "light"}]}]}, {"id": "b359a557-2215-4623-8b4d-2975f310b6e5", "name": "namuwiki", "tags": [], "issuers": ["\ub098\ubb34\uc704\ud0a4"], "match_rules": null, "icons_collections": [{"id": "6aeccdae-1c03-4d50-87f4-4e5712dbe772", "name": "namuwiki", "icons": [{"id": "682c0762-a20f-4a24-8fb6-7b6fe7c5b702", "name": "namuwiki", "type": "light"}]}]}, {"id": "b36bbb0f-dc99-4f9f-b934-74c68aa0eb3a", "name": "101domain", "tags": [], "issuers": [], "match_rules": [{"text": "101domain", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "101domain", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "66fc163c-d717-4c18-8277-cfc30291cd5f", "name": "101domain", "icons": [{"id": "ea2c6f10-8fa7-4828-bbb6-c918a5c55024", "name": "101domain", "type": "light"}]}]}, {"id": "b3a39cd8-702a-43b9-809d-0050b7203f0e", "name": "GoSquared", "tags": [], "issuers": [], "match_rules": [{"text": "GoSquared", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GoSquared", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8e3ffaec-9aff-4dee-95ed-2efb063baf84", "name": "GoSquared", "icons": [{"id": "65453160-606a-4358-9096-5a2c593ad3ce", "name": "GoSquared", "type": "light"}, {"id": "d7e1cd4b-e80b-43be-9fcc-8fe68090ae73", "name": "GoSquared", "type": "dark"}]}]}, {"id": "b3ad7c69-d5dc-47e8-82b0-ac607e151329", "name": "Shopify", "tags": [], "issuers": ["Shopify"], "match_rules": [], "icons_collections": [{"id": "ab0b5936-b6df-49f4-9ddc-c898860976de", "name": "Shopify", "icons": [{"id": "400287df-1619-4a32-a7bc-c5e794e1ca8a", "name": "Shopify", "type": "light"}]}]}, {"id": "b3afda8d-5024-43aa-965c-b12a1036aaf5", "name": "DMDC milConnect", "tags": [], "issuers": ["DMDC milConnect"], "match_rules": null, "icons_collections": [{"id": "f37ff2da-f229-406d-bd00-6019cb92097a", "name": "DMDC milConnect", "icons": [{"id": "9af39f68-a125-4cdf-babd-5d1edc59ee1e", "name": "DMDC milConnect", "type": "light"}]}]}, {"id": "b4017db1-4377-42e0-849c-c70ee3d4f699", "name": "Cisco", "tags": [], "issuers": ["id.cisco.com"], "match_rules": [], "icons_collections": [{"id": "0c91f7fd-783a-4f4c-846e-2e57e13727ba", "name": "Cisco", "icons": [{"id": "4ba2ac1d-ed7f-4c24-905e-a243e33b00a1", "name": "Cisco", "type": "dark"}, {"id": "7868fd68-9a73-44b4-9cc5-1b34fc4da924", "name": "Cisco", "type": "light"}]}]}, {"id": "b4417c8f-1e3f-418f-84b7-77874d164c1a", "name": "Findmyshift", "tags": [], "issuers": [], "match_rules": [{"text": "Findmyshift", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Findmyshift", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "51722e7c-193e-46a7-8817-91fb356e425e", "name": "Findmyshift", "icons": [{"id": "4bcadbfc-5152-4404-9f0f-47c35b6642ec", "name": "Findmyshift", "type": "light"}]}]}, {"id": "b47ca012-eda9-44fc-aec8-39a16a2ee928", "name": "Acquia", "tags": [], "issuers": [], "match_rules": [{"text": "Acquia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Acquia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0764b5c9-83c3-4e6c-a053-590ed3379d8c", "name": "Acquia", "icons": [{"id": "3d78efa5-3f6e-45b9-9885-7729f9e35058", "name": "Acquia", "type": "light"}]}]}, {"id": "b4ed9356-1b2d-4a21-ba2b-c96eeb4edcf3", "name": "Trimble", "tags": [], "issuers": [], "match_rules": [{"text": "Trimble Identity", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "6126c800-79b5-40ee-8244-8d14a7d00e97", "name": "Trimble", "icons": [{"id": "5ece0bdd-d907-43ad-91df-7c0faabbe0a3", "name": "Trimble", "type": "light"}, {"id": "79c149d0-c380-4a35-8099-cf8388423ed8", "name": "Trimble", "type": "dark"}]}]}, {"id": "b545e75e-34cf-4186-b246-dc02af28de70", "name": "20i", "tags": [], "issuers": ["my.20i.com"], "match_rules": [], "icons_collections": [{"id": "5befd7ae-b6ae-481b-863e-22783c95a493", "name": "20i", "icons": [{"id": "4486e1e7-037b-44a2-b3ac-977e2c79abf8", "name": "20i", "type": "light"}]}]}, {"id": "b54e1619-84eb-4a39-be76-fa2a4e6be6ff", "name": "elmah.io", "tags": [], "issuers": [], "match_rules": [{"text": "elmah.io", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "elmah.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1cafdf9b-69f8-4638-9ee1-1c67f8feb7e5", "name": "elmah.io", "icons": [{"id": "7b40e29a-fcd1-4aca-8cce-a581638c34e3", "name": "elmah.io", "type": "light"}]}]}, {"id": "b5586d9b-e92d-4557-8b6a-69f79cbe767e", "name": "Pterodactyl", "tags": [], "issuers": [], "match_rules": [{"text": "pterodactyl.io", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "49bb26cb-0b4a-44a7-8ec4-0bb8fa283733", "name": "Pterodactyl", "icons": [{"id": "868e3b18-685f-4332-b791-d31e5cf73afc", "name": "Pterodactyl", "type": "light"}]}]}, {"id": "b5850d68-91cf-40cf-aa7c-74776bd6cac0", "name": "SendOwl", "tags": [], "issuers": [], "match_rules": [{"text": "SendOwl", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SendOwl", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2d6c7fcd-8a93-428a-b6ef-2fbd29837fdf", "name": "SendOwl", "icons": [{"id": "0c76f4ea-c81d-4c44-815e-6414770c8056", "name": "SendOwl", "type": "dark"}, {"id": "df3d05c1-91ff-40fa-8506-85f34c0b390f", "name": "SendOwl", "type": "light"}]}]}, {"id": "b650bb73-fd1c-45ca-bb0d-abfdbff08014", "name": "SAPO Mail", "tags": [], "issuers": [], "match_rules": [{"text": "SAPO Mail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SAPO Mail", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bceac4e9-ae84-4963-8b1b-c8a5013f6c6e", "name": "SAPO Mail", "icons": [{"id": "c9d8a58d-8cb3-402a-a644-41dac8664dd3", "name": "SAPO Mail", "type": "light"}]}]}, {"id": "b6a4766d-d489-4488-9330-041d12f33d60", "name": "Red Hat", "tags": [], "issuers": [], "match_rules": [{"text": "Red Hat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Red Hat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "152fd0e2-7bcc-4d81-a76c-649f5a996036", "name": "Red Hat", "icons": [{"id": "1d2e5ba3-3e8d-4c31-a6f4-977c33e1ba5a", "name": "Red Hat", "type": "light"}]}]}, {"id": "b6b72488-1f7b-431d-afe0-4889496deb70", "name": "Oracle Cloud", "tags": [], "issuers": ["Oracle"], "match_rules": [], "icons_collections": [{"id": "910890db-0da8-4d54-b0a0-d7babf811ade", "name": "Oracle Cloud", "icons": [{"id": "bbb4187d-1818-4c55-81e6-4adc76a5428c", "name": "Oracle Cloud", "type": "light"}]}]}, {"id": "b6e1967d-9ec6-4ba9-ba53-6551e9b5e75a", "name": "Floatplane", "tags": [], "issuers": [], "match_rules": [{"text": "Floatplane", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Floatplane", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c321115e-762e-4d10-b089-07543a418d24", "name": "Floatplane", "icons": [{"id": "b62a1989-8f22-4efc-ae60-035686b6708b", "name": "Floatplane", "type": "light"}]}]}, {"id": "b6e2fdc3-447d-4269-a5d8-83e8905f3eea", "name": "Phemex", "tags": [], "issuers": [], "match_rules": [{"text": "Phemex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Phemex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c348bc60-4ecb-4120-ae73-884335b4d365", "name": "Phemex", "icons": [{"id": "b70a22ea-94c9-4980-9ceb-de3405e5cbf8", "name": "Phemex", "type": "light"}]}]}, {"id": "b6eaada1-807e-4188-b418-df36f8d4a964", "name": "Auth0", "tags": [], "issuers": ["Auth0"], "match_rules": null, "icons_collections": [{"id": "b413e65a-cef9-404d-b1dc-b3bd8e1ae7c3", "name": "Auth0", "icons": [{"id": "e91813e7-daea-4b13-ad94-cad10a0d0167", "name": "Auth0", "type": "light"}]}]}, {"id": "b7100ab6-810c-430a-9fef-7ae03dd6dc94", "name": "Carta", "tags": [], "issuers": [], "match_rules": [{"text": "Carta", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Carta", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "71e7a313-308c-4275-a3b2-9aaff9cd0ed2", "name": "Carta", "icons": [{"id": "79d747d2-d1c2-455a-af02-95d132c459ea", "name": "Carta", "type": "dark"}, {"id": "b72f4ed6-e318-4912-93c6-f84745bccbd9", "name": "Carta", "type": "light"}]}]}, {"id": "b71b2589-efb3-4237-9bf8-22e9826496ed", "name": "QuickFile", "tags": [], "issuers": [], "match_rules": [{"text": "QuickFile", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "QuickFile", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "31413840-9231-42e3-bd3e-ff0ac6ac4458", "name": "QuickFile", "icons": [{"id": "e8ac3f5b-9142-44c8-82c1-38043f68470e", "name": "QuickFile", "type": "light"}]}]}, {"id": "b78bba1b-4733-42bc-a1d5-ca18d53e291f", "name": "Paxful", "tags": [], "issuers": ["Paxful"], "match_rules": [], "icons_collections": [{"id": "ad3e5352-fbda-400d-b891-e21ddec8295e", "name": "Paxful", "icons": [{"id": "57a9c213-dd26-48d2-a40b-0cc896183c80", "name": "Paxful", "type": "light"}, {"id": "76101d52-480c-4d36-8069-7da452135117", "name": "Paxful", "type": "dark"}]}]}, {"id": "b7cb942a-bbd6-4823-b7c9-f0f4cee99c16", "name": "Postman", "tags": [], "issuers": [], "match_rules": [{"text": "Postman", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Postman", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "94d0d578-13d6-4a97-b112-88f2f1b443e3", "name": "Postman", "icons": [{"id": "9f8402c3-5137-4232-8d15-f66c1735a9fd", "name": "Postman", "type": "light"}]}]}, {"id": "b7eb2d59-e9b4-4295-907b-b62c1ad1310c", "name": "Mercury", "tags": [], "issuers": [], "match_rules": [{"text": "Mercury", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mercury", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "64f1d5c7-5abd-4897-bb3e-823990612154", "name": "Mercury", "icons": [{"id": "9aafbb89-63af-4a00-9678-f09568d5ddd9", "name": "Mercury", "type": "light"}, {"id": "f7cdc989-741a-44cf-9529-8b54c8993e86", "name": "Mercury", "type": "dark"}]}]}, {"id": "b807a96b-b1bf-4550-8729-d45068aa1140", "name": "Webflow", "tags": [], "issuers": [], "match_rules": [{"text": "Webflow", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "38a47686-7af2-4b3b-827b-315b6b92eb74", "name": "Webflow", "icons": [{"id": "a535a9a2-e922-4553-bad4-caacd43dd6e2", "name": "Webflow", "type": "light"}]}]}, {"id": "b84dc9ad-9910-44b9-b065-99f06c679706", "name": "Mailgun", "tags": [], "issuers": ["Mailgun"], "match_rules": null, "icons_collections": [{"id": "9e4db15d-4ac6-49fc-a22c-8a0b580bde69", "name": "Mailgun", "icons": [{"id": "d2bdd4d3-7439-4812-93a0-285200179e2d", "name": "Mailgun", "type": "light"}]}]}, {"id": "b872cbd5-dcaa-4a36-83dc-29b273009726", "name": "Coinsquare", "tags": [], "issuers": ["coinsquare.io"], "match_rules": [], "icons_collections": [{"id": "523a8784-c94d-4ac2-bd6f-153b1df3a9e8", "name": "coinsquare.io", "icons": [{"id": "6d07ae60-58e9-4873-8a0e-07c82ea1aa69", "name": "coinsquare.io", "type": "light"}, {"id": "c150b169-e4fb-406d-9524-292e3e96f7af", "name": "coinsquare.io", "type": "dark"}]}]}, {"id": "b8736a08-3188-42dc-9127-14686ea744ce", "name": "Knack", "tags": [], "issuers": [], "match_rules": [{"text": "Knack", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Knack", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d22ad62f-f438-40f8-a304-6aaab48328b7", "name": "Knack", "icons": [{"id": "4825f2c4-b017-43ad-83dc-3e48f6c8458b", "name": "Knack", "type": "light"}]}]}, {"id": "b87a58f6-2641-46f1-978a-95d67d481c20", "name": "STRATO", "tags": [], "issuers": [], "match_rules": [{"text": "STRATO", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "STRATO", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e48a3401-65f3-4509-97a8-938719064ff1", "name": "STRATO", "icons": [{"id": "18f9404c-6112-4d94-937b-b57e88b9d5ee", "name": "STRATO", "type": "light"}]}]}, {"id": "b8869267-e0a5-407c-9b77-8c664896b252", "name": "Windscribe", "tags": [], "issuers": ["Windscribe"], "match_rules": [], "icons_collections": [{"id": "a538ade5-25f9-4d84-b908-39495b168b47", "name": "Windscribe", "icons": [{"id": "4ba857ce-466b-457c-b8df-fa517a79aa69", "name": "Windscribe", "type": "light"}]}]}, {"id": "b88b6be0-9bc9-49ec-9629-41e80728d1c1", "name": "Engine Yard", "tags": [], "issuers": [], "match_rules": [{"text": "Engine Yard", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Engine Yard", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6e34c713-8f1e-43b1-b16e-a161099cf437", "name": "Engine Yard", "icons": [{"id": "d269aafd-038f-432b-abbd-94955a553cae", "name": "Engine Yard", "type": "light"}]}]}, {"id": "b8ccc448-1c97-4d5c-a781-25c48996b00f", "name": "Sony", "tags": ["ps", "PlayStation"], "issuers": ["Sony"], "match_rules": [], "icons_collections": [{"id": "2dc7dd80-1b1e-420b-92ee-838298de29a9", "name": "Sony", "icons": [{"id": "ffca8acd-7a92-40de-a115-ef4c77ab4e2d", "name": "Sony", "type": "light"}]}]}, {"id": "b8e70649-c799-4d52-a8ab-1113fff93a79", "name": "UPM", "tags": ["Universidad", "Polit\u00e9cnica", "Madrid"], "issuers": ["UPM"], "match_rules": [], "icons_collections": [{"id": "4dca89c7-8eb2-40c8-82d5-bf0b12baa820", "name": "UPM", "icons": [{"id": "1e46ff2a-8f4c-45a7-bb20-4b6c78c667c1", "name": "UPM", "type": "light"}]}]}, {"id": "b8eaebbe-141b-4d01-af2f-5f568571bf77", "name": "Clio", "tags": [], "issuers": [], "match_rules": [{"text": "Clio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Clio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "200243cb-ec62-493c-9d38-fd28fd169bf8", "name": "Clio", "icons": [{"id": "7db6a4d3-3cd3-4c31-894b-809c3331ff6a", "name": "Clio", "type": "light"}]}]}, {"id": "b90e407e-b5f8-4ef5-a3e5-cc3e2ddaf2b9", "name": "APNIC", "tags": [], "issuers": [], "match_rules": [{"text": "APNIC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "APNIC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8f68ff8f-35df-4600-8a6d-acf23baa0e74", "name": "APNIC", "icons": [{"id": "81f85c3a-ff0d-4acc-b501-abf81841b1a5", "name": " APNIC", "type": "dark"}, {"id": "a25cb132-cda0-4106-a198-fd2f66e20e84", "name": "APNIC", "type": "light"}]}]}, {"id": "b91a451a-c39d-4660-8852-9571480506f3", "name": "dmarcian", "tags": [], "issuers": [], "match_rules": [{"text": "dmarcian", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "dmarcian", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8a64113c-04a5-4e02-9064-6aec58ffdc17", "name": "dmarcian", "icons": [{"id": "154c2de3-188c-468a-98cb-7900cc30c4b6", "name": "dmarcian", "type": "light"}]}]}, {"id": "b962226b-81d1-4cdb-a1fb-4f3f97bca86d", "name": "eNom", "tags": [], "issuers": [], "match_rules": [{"text": "eNom", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "eNom", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d9e6030c-cab2-4eed-8a8e-d3990c6e77e5", "name": "eNom", "icons": [{"id": "2798be9e-5659-4e28-935d-8bc23042b29e", "name": "eNom", "type": "light"}]}]}, {"id": "b963fbe1-f4ce-42dd-9d54-a978d10908d0", "name": "Anycoin Direct", "tags": [], "issuers": [], "match_rules": [{"text": "Anycoin Direct", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Anycoin Direct", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3d666863-11fa-460a-adf4-5706bca6af49", "name": "Anycoin Direct", "icons": [{"id": "656eefdd-3ae2-4f3a-be35-55d4bd5cae27", "name": "Anycoin Direct", "type": "light"}, {"id": "6ff94e3e-0583-4100-bae3-aa56ede7b02c", "name": "Anycoin Direct", "type": "dark"}]}]}, {"id": "b98e779d-5af4-4c5b-a52b-9bae9404cb00", "name": "Tixte", "tags": [], "issuers": ["otpauth://totp/tixte.com?secret=xxxxx&issuer=Tixte"], "match_rules": null, "icons_collections": [{"id": "8f243e82-97d7-4906-b641-cc00a59576c3", "name": "Tixte", "icons": [{"id": "88c0b966-232c-4614-ad6d-97d1870fed41", "name": "Tixte", "type": "light"}]}]}, {"id": "b9a73622-27a2-4776-8996-c6e43bee3463", "name": "GoTo", "tags": [], "issuers": [], "match_rules": [{"text": "GoTo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GoTo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "50a61314-eaf4-46d9-8deb-2b470266937c", "name": "GoTo", "icons": [{"id": "7b18d98c-6018-40a2-881b-4f5486cbfbba", "name": "GoTo", "type": "light"}, {"id": "b7f5e14f-6333-4bfb-8270-5467c89c8cf3", "name": "GoTo", "type": "dark"}]}]}, {"id": "b9b8ff8f-0588-4281-a199-674f7785a641", "name": "itslearning", "tags": [], "issuers": [], "match_rules": [{"text": "itslearning", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "itslearning", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "073d9ddf-0929-4321-ac75-289628a23174", "name": "itslearning", "icons": [{"id": "cad08c4f-7464-4721-a5c0-eb8c78efa443", "name": "itslearning", "type": "light"}]}]}, {"id": "ba7f09f8-10ea-4158-aaf7-0611c78a229d", "name": "M1 Finance", "tags": [], "issuers": [], "match_rules": [{"text": "M1 Finance", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "M1 Finance", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b81727b2-1515-401e-b1a6-7c3c051a437d", "name": "M1 Finance", "icons": [{"id": "80ce9392-f81c-42a1-b5c2-a815bfa38f34", "name": "M1 Finance", "type": "light"}, {"id": "a6aa6dd4-f1ac-4b88-b29c-ad6460f42686", "name": "M1 Finance", "type": "dark"}]}]}, {"id": "bb0cf5e7-d66f-442a-9f15-1623cfcfc57e", "name": "cPanel", "tags": ["hosting", "panel"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "ae7eba01-f217-4138-9389-0dbac94a8f7e", "name": "cPanel", "icons": [{"id": "89bfbb1f-97c5-4672-9507-a30512a0dffd", "name": "cPanel", "type": "light"}]}]}, {"id": "bb91944e-949d-4474-a97f-aca5a722fb57", "name": "Chartbeat", "tags": [], "issuers": [], "match_rules": [{"text": "Chartbeat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Chartbeat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "688e5014-c9d6-40d0-8b0d-dcebe407bb13", "name": "Chartbeat", "icons": [{"id": "8a4a291b-d313-4337-9ba7-1bc0c86ef792", "name": "Chartbeat", "type": "light"}]}]}, {"id": "bbb8945e-9e8e-4acc-9ec6-85efbda0af98", "name": "Cloudbet", "tags": [], "issuers": [], "match_rules": [{"text": "Cloudbet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cloudbet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "81e1ca40-eb64-4f45-b7bb-d1ee8486625e", "name": "Cloudbet", "icons": [{"id": "58b10831-0b85-4172-87df-52b101b512d4", "name": "Cloudbet", "type": "light"}]}]}, {"id": "bbf98616-dab0-48d4-859a-0877ad00766a", "name": "TeamViewer", "tags": [], "issuers": ["TeamViewer"], "match_rules": [], "icons_collections": [{"id": "e478edd8-ec9b-4e06-b0f8-1089ce988125", "name": "TeamViewer", "icons": [{"id": "726d138f-a418-4950-b2bd-59bec2b66a36", "name": "TeamViewer", "type": "light"}]}]}, {"id": "bc1329ad-925b-4f51-8ff2-0079975d9bc0", "name": "Kaspersky", "tags": [], "issuers": ["Kaspersky"], "match_rules": [], "icons_collections": [{"id": "7f5d563c-229a-4e2c-bbbd-50c7d27f5bdb", "name": "Kaspersky", "icons": [{"id": "4fbf4cbd-7580-4b1a-9e59-3ec522329b48", "name": "Kaspersky", "type": "light"}, {"id": "f6e42320-6170-4bc2-9fd1-23639c23583a", "name": "Kaspersky", "type": "dark"}]}]}, {"id": "bd49d794-b5d8-44db-ba89-dae49b11bbeb", "name": "Schneider Electric", "tags": [], "issuers": [], "match_rules": [{"text": "Schneider Electric", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Schneider Electric", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aebfcec5-c95d-4d02-900d-7ad4c7121301", "name": "Schneider Electric", "icons": [{"id": "59b142f3-3fd0-48a1-8841-e280d7ebfc38", "name": "Schneider Electric", "type": "light"}]}]}, {"id": "bd59af38-1495-4ca2-99d4-76c1d9787a05", "name": "Sendcloud", "tags": [], "issuers": [], "match_rules": [{"text": "Sendcloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sendcloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0c38bb1a-1d23-441e-abdb-abd4f46a5dea", "name": "Sendcloud", "icons": [{"id": "85f749cd-7773-41a6-ba94-1be3c46ceffe", "name": "Sendcloud", "type": "light"}]}]}, {"id": "bd82b421-51cf-436f-86e9-b9c98487f439", "name": "Filen", "tags": [], "issuers": ["Filen"], "match_rules": null, "icons_collections": [{"id": "5c7adbb7-3438-424b-a7d9-f82b7360516c", "name": "Filen", "icons": [{"id": "8f60f1d9-cd4b-4213-90fe-3d8d32541075", "name": "Filen", "type": "light"}, {"id": "dbccab97-41e7-4c6e-86e8-1b24c213b22f", "name": "Filen", "type": "dark"}]}]}, {"id": "bd847a68-44f4-4ccf-b4b6-0406eeabc753", "name": "Intuit TurboTax", "tags": [], "issuers": [], "match_rules": [{"text": "Intuit TurboTax", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Intuit TurboTax", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cf952bde-eabf-4334-852e-11e3861f0b4e", "name": "Intuit TurboTax", "icons": [{"id": "985aac14-34ae-47f7-8094-9fe591969a4b", "name": "Intuit TurboTax", "type": "light"}]}]}, {"id": "bdf9b780-cced-4156-8bff-c63315bdb3ed", "name": "Planio", "tags": [], "issuers": [], "match_rules": [{"text": "Planio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Planio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d781e3e5-0b60-4471-83c6-95e04e741c61", "name": "Planio", "icons": [{"id": "512ce74b-bbc8-47b4-87c3-f94f9b074dee", "name": "Planio", "type": "light"}]}]}, {"id": "be075048-b23d-4226-9fcf-2ff573afb7e1", "name": "Betvictor", "tags": [], "issuers": [], "match_rules": [{"text": "Betvictor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Betvictor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0cd28760-7717-4152-8786-7470f1476b9c", "name": "Betvictor", "icons": [{"id": "932d342c-e669-4e7b-b828-dc1d41cba579", "name": "Betvictor", "type": "light"}]}]}, {"id": "be114956-58bb-4909-8668-44e728554556", "name": "NextDNS", "tags": [], "issuers": ["NextDNS"], "match_rules": [], "icons_collections": [{"id": "88e25804-b257-416a-8cdc-68f71cae5f32", "name": "NextDNS", "icons": [{"id": "c8256b5f-bd3f-415b-8213-1c5401cb5f29", "name": "NextDNS", "type": "light"}]}]}, {"id": "be16e104-bb24-4683-9c7f-7a38e0fea894", "name": "Back4App", "tags": [], "issuers": [], "match_rules": [{"text": "Back4App", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Back4App", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "05c03baa-593d-4e28-95fc-cdd2402ff824", "name": "Back4App", "icons": [{"id": "7baaea73-c411-4597-8175-c85b5d2753a5", "name": "Back4App", "type": "light"}]}]}, {"id": "be30d50c-3f36-47cb-a290-1d8bf057f9f7", "name": "Emplifi", "tags": [], "issuers": [], "match_rules": [{"text": "Emplifi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Emplifi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "297c0a36-5202-49d0-846a-c86f3057ca94", "name": "Emplifi", "icons": [{"id": "482be808-0016-4175-af5e-c372dcb88d87", "name": "Emplifi", "type": "light"}]}]}, {"id": "be5b180f-67ba-487b-9166-a4e0605c1331", "name": "Domino Data Lab", "tags": [], "issuers": [], "match_rules": [{"text": "Domino Data Lab", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Domino Data Lab", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7551730e-2315-45a3-a694-02db3f5df261", "name": "Domino Data Lab", "icons": [{"id": "4f5711b5-7ade-4412-a613-e366ba575661", "name": "Domino Data Lab", "type": "light"}]}]}, {"id": "be87d55c-5786-41a2-8851-84ba49c7d4d0", "name": "Deutsche Bahn", "tags": [], "issuers": ["Deutsche Bahn"], "match_rules": null, "icons_collections": [{"id": "2da66dfc-d49d-443c-9322-57ae6c623007", "name": "DB", "icons": [{"id": "a6971039-20f4-4234-a902-b80e9c580f50", "name": "DB", "type": "light"}]}]}, {"id": "be900c77-fe67-4f9b-805b-10c899125fa5", "name": "Microsoft", "tags": ["ms"], "issuers": ["Microsoft"], "match_rules": [], "icons_collections": [{"id": "5336cd6b-2971-4a3f-bdd9-7d32ea2abe27", "name": "Microsoft", "icons": [{"id": "6f13e903-ea3f-4f08-bce7-b1d142d69149", "name": "Microsoft", "type": "light"}]}]}, {"id": "be94105a-d323-4565-983e-de4760b9fe98", "name": "Glasswire", "tags": [], "issuers": [], "match_rules": [{"text": "Glasswire", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a3b6db73-ed50-4061-bc72-735a0b06f147", "name": "Glasswire", "icons": [{"id": "23087d98-4fa7-4ce5-9a48-b83d63bac1b6", "name": "Glasswire", "type": "light"}]}]}, {"id": "bea00452-571b-4b75-83cb-be9f79f8dcc6", "name": "ClickUp", "tags": [], "issuers": ["ClickUp"], "match_rules": null, "icons_collections": [{"id": "3f75fd3e-be90-44fa-9620-a2ba8c158557", "name": "ClickUp", "icons": [{"id": "4b315879-fa9f-40d7-8b47-e4bd1d5e367b", "name": "ClickUp", "type": "light"}]}]}, {"id": "bf211001-f2a2-4385-b857-9740b1edc85a", "name": "WitherHosting", "tags": [], "issuers": ["WitherHosting"], "match_rules": null, "icons_collections": [{"id": "2d0e42e8-e91d-4983-8364-d005429d57ad", "name": "WitherHosting", "icons": [{"id": "0dc68b55-50ce-49c5-bb76-1e2a857854c8", "name": "WitherHosting", "type": "light"}, {"id": "78552165-4cf8-42bd-be9c-8c7a4b83ba62", "name": "WitherHosting", "type": "dark"}]}]}, {"id": "bf4146b3-0f39-4ade-b1be-5e7737c45480", "name": "HT-Hosting", "tags": [], "issuers": [], "match_rules": [{"text": "HT-Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HT-Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b3682443-d203-4acc-ae08-8ff904d2d57d", "name": "HT-Hosting", "icons": [{"id": "cf0382f4-cc04-46ae-9b57-d024dd7c246f", "name": "HT-Hosting", "type": "light"}]}]}, {"id": "bfeb9527-09c0-4d93-8b36-ddf0f634c3c1", "name": "Mist", "tags": [], "issuers": [], "match_rules": [{"text": "Mist", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mist", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4417b65e-35f8-48a7-83d4-0c6ae4391d3c", "name": "Mist", "icons": [{"id": "604c6993-4746-48b8-8246-368737101296", "name": "Mist", "type": "light"}]}]}, {"id": "bfec37d5-6a06-4119-9db8-417f4026dacb", "name": "StickyPassword", "tags": [], "issuers": [], "match_rules": [{"text": "StickyPassword", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StickyPassword", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0a1fde94-c899-4faa-b086-d039c2b2a178", "name": "StickyPassword", "icons": [{"id": "20dbeedb-e854-4145-9dd5-5a36a97f6cd0", "name": "StickyPassword", "type": "light"}]}]}, {"id": "c018a2a1-36cf-46a1-81f5-d8d4b72ceef1", "name": "Bell", "tags": [], "issuers": [], "match_rules": [{"text": "Bell", "field": "issuer", "matcher": "starts_with", "ignore_case": true}, {"text": "Bell", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "8c8de7b1-ee0d-44cf-a607-dfc37ca1314b", "name": "Bell", "icons": [{"id": "9e035913-e8f9-4fd3-adb1-e1296ad9bcb1", "name": "Bell", "type": "light"}, {"id": "e8ecde4d-12fc-41b8-801f-e3fe8064ab68", "name": "Bell", "type": "dark"}]}]}, {"id": "c0d4f3de-2049-4a68-b9bf-a42e70786806", "name": "Anycoin", "tags": ["anycoin.cz"], "issuers": [], "match_rules": [{"text": "Anycoin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Anycoin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6618c73d-3452-4723-9e56-29e294fb9354", "name": "Anycoin", "icons": [{"id": "da2a3ef2-0514-41e0-ac7c-56ed10879b7a", "name": "Anycoin", "type": "light"}]}]}, {"id": "c103519f-e4fe-4c5a-9c75-e55b42d94a17", "name": "AnonAddy", "tags": [], "issuers": ["AnonAddy"], "match_rules": null, "icons_collections": [{"id": "165b0b2b-ac87-40a6-af8e-f8885ef57bb5", "name": "AnonAddy", "icons": [{"id": "99dc6207-2a6a-4d75-b4f6-fae9ee81639c", "name": "AnonAddy", "type": "light"}]}]}, {"id": "c1098c10-4c25-4aec-8c5b-aab56989b3b9", "name": "Missive App", "tags": [], "issuers": [], "match_rules": [{"text": "Missive App", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Missive App", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "55753574-a137-4327-ba45-047daf8a9a61", "name": "Missive App", "icons": [{"id": "c1be45aa-3a3f-47fa-8c90-a9f259cd651c", "name": "Missive App", "type": "dark"}, {"id": "fe7f22f4-cd5d-47ab-a112-a83a421d5007", "name": "Missive App", "type": "light"}]}]}, {"id": "c112bf95-6093-493e-8ed8-3cd700a6209a", "name": "CoinField", "tags": [], "issuers": [], "match_rules": [{"text": "CoinField", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinField", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "83bb02cc-d58e-43cf-b130-f25103d49810", "name": "CoinField", "icons": [{"id": "6b508312-34aa-4406-a7b8-cb17e0089ae6", "name": "CoinField", "type": "dark"}, {"id": "e03dda9f-865a-4d04-99da-59854fab9d2e", "name": "CoinField", "type": "light"}]}]}, {"id": "c1313346-0d77-4dc7-a67a-2c4136b4f4de", "name": "Neolo", "tags": [], "issuers": [], "match_rules": [{"text": "Neolo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Neolo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "acb3b7c1-612a-4913-a407-8a78832694c3", "name": "Neolo", "icons": [{"id": "c3ad780a-dc34-418d-b9d0-390da41d246e", "name": "Neolo", "type": "light"}]}]}, {"id": "c1a8aa2e-5d5c-4f1f-8c1d-15277d75cbd8", "name": "Bugsnag", "tags": [], "issuers": [], "match_rules": [{"text": "Bugsnag", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bugsnag", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8836e46d-263e-4d37-bdc9-dc92e8a4ae87", "name": "Bugsnag", "icons": [{"id": "a80ef394-1f77-4562-a6ff-db567a47e917", "name": "Bugsnag", "type": "light"}]}]}, {"id": "c1ca5186-2e6d-4d70-b8c9-a5410b791664", "name": "Stake.com", "tags": [], "issuers": [], "match_rules": [{"text": "Stake.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "5430258c-8064-46bb-9adf-9a36e276407b", "name": "Stake.com", "icons": [{"id": "7c665366-cfc1-4554-a50c-dcdf72743a1e", "name": "Stake", "type": "light"}, {"id": "fc17da47-5439-4452-8df2-875ff991778d", "name": "Stake", "type": "dark"}]}]}, {"id": "c1eb08ce-519a-4bbb-813e-6342a981966e", "name": "Seafile", "tags": [], "issuers": ["Seafile"], "match_rules": null, "icons_collections": [{"id": "09763593-1c48-4ab5-a400-a3f774a2f420", "name": "Seafile", "icons": [{"id": "1c9644b1-fc33-400e-a38e-cdb755256f21", "name": "Seafile", "type": "light"}]}]}, {"id": "c21e91ed-6378-4341-9668-064d76f4b1bd", "name": "Canva", "tags": [], "issuers": ["Canva"], "match_rules": null, "icons_collections": [{"id": "bdea153c-20d7-4844-9c97-d694ee191353", "name": "Canva", "icons": [{"id": "4cdd7194-7d0f-4f37-b64a-f42b108ad8b7", "name": "Canva", "type": "dark"}, {"id": "91b91042-14a4-4a5e-8925-0bed250776d7", "name": "Canva", "type": "light"}]}]}, {"id": "c23036d4-5065-4acd-9285-9bf53cc2869a", "name": "ConnectWise Control (ScreenConnect)", "tags": [], "issuers": [], "match_rules": [{"text": "ConnectWise Control (ScreenConnect)", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ConnectWise Control (ScreenConnect)", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e1cae46b-2a0f-47b5-9750-73e3daa333d4", "name": "ConnectWise Control (ScreenConnect)", "icons": [{"id": "d0d1a71d-4f33-4365-be5c-85612319c0fe", "name": "ConnectWise Control (ScreenConnect)", "type": "light"}]}]}, {"id": "c2a740ba-8823-4add-9f60-3f87797251f0", "name": "Wealthsimple", "tags": [], "issuers": ["Wealthsimple"], "match_rules": null, "icons_collections": [{"id": "699d4dd1-5144-49e6-9c77-bf065e7bcd14", "name": "Wealthsimple", "icons": [{"id": "10909efb-986e-4c81-b64e-b7c242ecd3a7", "name": "Wealthsimple", "type": "light"}, {"id": "78a660a2-d2d1-42db-8cec-1d0288621bd0", "name": "Wealthsimple", "type": "dark"}]}]}, {"id": "c2b17b60-31f1-489b-b3df-3f7b1f750d6d", "name": "Uptime Kuma", "tags": [], "issuers": [], "match_rules": [{"text": "Uptime%20Kuma", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Uptime Kuma", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e40b5b59-34f0-406a-87d8-3e2e27f79b2a", "name": "Uptime Kuma", "icons": [{"id": "ef0be002-1043-469c-a22b-bab12caf3967", "name": "Uptime Kuma", "type": "light"}]}]}, {"id": "c2c620fa-4c2d-4a8b-a2ab-f36296e75eb8", "name": "Poli Systems", "tags": [], "issuers": [], "match_rules": [{"text": "Poli Systems", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Poli Systems", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d63ded88-e3c9-48ac-a7f9-c7e1d2a433b0", "name": "Poli Systems", "icons": [{"id": "dc04c153-d436-4f97-9a92-3ce187d304f1", "name": "Poli Systems", "type": "light"}]}]}, {"id": "c2e5b8ea-e5f2-48c9-8e9f-452622a3df9a", "name": "MEXC", "tags": [], "issuers": ["MEXC"], "match_rules": null, "icons_collections": [{"id": "df2fe8d6-4742-4903-a7da-e4c86d990b43", "name": "MEXC", "icons": [{"id": "e000f79f-65c6-4f86-817c-674cab1066de", "name": "MEXC", "type": "light"}]}]}, {"id": "c3b53c9a-f0ad-4fed-b34f-3857cf11dfa0", "name": "Exact Online", "tags": [], "issuers": [], "match_rules": [{"text": "Exact Online", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Exact Online", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4ebfcfe7-dbe5-4948-b791-82e9eb42e03b", "name": "Exact Online", "icons": [{"id": "65ea9a84-b792-47ea-8209-687fc4ddd825", "name": "Exact Online", "type": "light"}]}]}, {"id": "c3cf1e8a-8f6e-4009-8f19-5677f22899c0", "name": "Changelly", "tags": [], "issuers": [], "match_rules": [{"text": "Changelly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Changelly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4629b020-3982-4454-916d-4a465a09c9aa", "name": "Changelly", "icons": [{"id": "19de07f4-c82b-4ac4-a644-5efdf1af8553", "name": "Changelly", "type": "light"}]}]}, {"id": "c3cf42df-5f28-4812-a954-7364473d5723", "name": "VMware", "tags": [], "issuers": ["VMware+Cloud+Services", "VMware Cloud Services"], "match_rules": null, "icons_collections": [{"id": "91779097-9ee2-4e9d-a208-20d3d01d1643", "name": "VMware", "icons": [{"id": "522719dd-9fd6-4829-b5d0-828bee041d96", "name": "VMware", "type": "light"}]}]}, {"id": "c3f5925b-225a-4232-becf-66cb4c9b04db", "name": "Notion", "tags": [], "issuers": ["Notion"], "match_rules": null, "icons_collections": [{"id": "6656fdcf-5aa8-4c26-bfeb-ada408e764e7", "name": "Notion", "icons": [{"id": "5be68e42-d158-4dd8-b879-74fa021a7ad5", "name": "Notion", "type": "light"}, {"id": "d4f89ee8-f5b4-426b-9918-256149e94056", "name": "Notion", "type": "dark"}]}]}, {"id": "c4504792-db36-4ab6-9119-a3ee097a4a94", "name": "Con Edison", "tags": [], "issuers": [], "match_rules": [{"text": "Con Edison", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Con Edison", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0eb466b7-a2be-4158-9a41-cc35691db480", "name": "Con Edison", "icons": [{"id": "179ce1cb-a186-4466-8a94-bc3c873186f0", "name": "Con Edison", "type": "light"}]}]}, {"id": "c4a11c0e-f261-48fe-969b-5646d7eaba0f", "name": "AltCoinTrader", "tags": [], "issuers": [], "match_rules": [{"text": "AltCoinTrader", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AltCoinTrader", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4bdd875e-e88b-46ff-9455-94f235f2a7ca", "name": "AltCoinTrader", "icons": [{"id": "7d568755-77d4-40aa-ab63-03282f03d9ac", "name": "AltCoinTrader", "type": "light"}]}]}, {"id": "c4a41a3c-741e-4c57-a59b-1e56d6bb202d", "name": "Betterment", "tags": [], "issuers": [], "match_rules": [{"text": "Betterment", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Betterment", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7560daaa-266a-42fd-999a-d3c039f5e100", "name": "Betterment", "icons": [{"id": "f7e5d74b-0337-4112-aba5-4d75963c5b12", "name": "Betterment", "type": "light"}]}]}, {"id": "c4c182d1-88d7-4c0a-bc67-1aeb28fa21db", "name": "coindeal.io", "tags": [], "issuers": ["coindeal.io"], "match_rules": [], "icons_collections": [{"id": "163316f8-fb4a-45c4-a349-1187e51bfe72", "name": "coindeal.io", "icons": [{"id": "0afb5eb7-9f44-4a00-89e2-502e213f6606", "name": "coindeal.io", "type": "light"}, {"id": "70eeb019-0bda-4199-b51b-00aa82536780", "name": "coindeal.io", "type": "dark"}]}]}, {"id": "c5dad234-589d-451c-9bf2-27ebcf7ab5f9", "name": "Purelymail", "tags": [], "issuers": [], "match_rules": [{"text": "Purelymail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Purelymail", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "c7266099-cbd6-4ebf-bf20-a882c3350af9", "name": "Purelymail", "icons": [{"id": "9aa6b11f-ca1c-4559-ae2e-d1299be1aed3", "name": "Purelymail", "type": "light"}]}]}, {"id": "c6055dca-eeaa-440b-809c-b038c42b5065", "name": "Drift", "tags": [], "issuers": [], "match_rules": [{"text": "Drift", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Drift", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "441a0f17-b8e3-4165-819c-cd17473ba6e0", "name": "Drift", "icons": [{"id": "05c7fcd5-8470-4deb-9f30-5c30f4609b33", "name": "Drift", "type": "light"}]}]}, {"id": "c6256792-d4da-4954-a3e7-2a0fcb4f7d2d", "name": "BullionStar", "tags": [], "issuers": [], "match_rules": [{"text": "BullionStar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BullionStar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d3ce67d9-4325-45ca-afb6-2f0c4a788972", "name": "BullionStar", "icons": [{"id": "9a040395-6f10-4a96-b4ad-4e58053733e1", "name": "BullionStar", "type": "light"}]}]}, {"id": "c62a918a-a48f-46bd-a5fe-3e5024fb3332", "name": "Labcorp OnDemand", "tags": [], "issuers": [], "match_rules": [{"text": "Labcorp OnDemand", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Labcorp OnDemand", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "16fc5678-180e-4e64-9398-842242382acf", "name": "Labcorp OnDemand", "icons": [{"id": "390b55ed-021b-4564-9e67-11a0eaa129c8", "name": "Labcorp OnDemand", "type": "light"}]}]}, {"id": "c62e1ea9-e2d8-4742-a6a9-d9b3527a068a", "name": "15Five", "tags": [], "issuers": [], "match_rules": [{"text": "15Five", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "15Five", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "978354b2-af33-440d-bc4d-97d95024ed31", "name": "15Five", "icons": [{"id": "64b222af-de3e-4fea-9090-9ae4e00a2ca5", "name": "15Five", "type": "light"}]}]}, {"id": "c63760a0-5f64-4b99-b8bd-cd08d4266d86", "name": "Federal Student Aid", "tags": [], "issuers": [], "match_rules": [{"text": "Federal Student Aid", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Federal Student Aid", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c69c5152-2b51-43ef-b881-d3e50c599bb6", "name": "Federal Student Aid", "icons": [{"id": "ef6a2628-d333-46f0-9003-dcdaff2ad41b", "name": "Federal Student Aid", "type": "light"}]}]}, {"id": "c6441103-fa31-45f6-bc7b-76e3d20a73b1", "name": "Mailo", "tags": [], "issuers": [], "match_rules": [{"text": "Mailo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mailo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fbd7637d-c1a3-454a-8e06-b7cc5f04201c", "name": "Mailo", "icons": [{"id": "3c607c03-6f5f-4067-ab1c-1a3391a45732", "name": "Mailo", "type": "light"}]}]}, {"id": "c679176d-d306-4a06-876a-3334b47d3975", "name": "AnyDesk", "tags": [], "issuers": ["anydesk.com"], "match_rules": [], "icons_collections": [{"id": "5fb9027d-e589-43ab-88a7-13f39799ef94", "name": "AnyDesk", "icons": [{"id": "dcfefd8c-18e3-4eca-a8a3-c6415f734160", "name": "AnyDesk", "type": "light"}]}]}, {"id": "c6a0e139-d7b3-4351-8741-cfdd296b5802", "name": "Bitcoin Meester", "tags": [], "issuers": ["Bitcoinmeester"], "match_rules": [], "icons_collections": [{"id": "4e2c56b1-02ce-4756-8569-ef872d405874", "name": "Bitcoin Meester", "icons": [{"id": "dd4e5b0f-d693-47ea-9f85-ea5b81ab33c9", "name": "Bitcoin Meester", "type": "light"}]}]}, {"id": "c6a5b0b8-7c7f-4469-a5b2-4e97f4b93eb1", "name": "XDA", "tags": [], "issuers": ["XDA Forums"], "match_rules": [], "icons_collections": [{"id": "8250908f-6fd4-4fdf-9250-1fb45e27b595", "name": "XDA", "icons": [{"id": "58f1860a-ea8d-4f26-8a1f-7ae713384d11", "name": "XDA", "type": "light"}]}]}, {"id": "c6ba0b94-7535-4ea3-b490-9db5513f0a3a", "name": "LBMG", "tags": ["lbmg.ch"], "issuers": [], "match_rules": [{"text": "lbmg", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "70d6c5d3-7184-486b-96b1-d3b35e038209", "name": "LBMG", "icons": [{"id": "2e76a530-6802-40a2-805a-f2feb7675a35", "name": "lbmg", "type": "light"}, {"id": "af64fb04-462c-41da-8c4f-2aa1e1a777a1", "name": "lbmg", "type": "dark"}]}]}, {"id": "c6c60489-75b0-4ee8-984e-b1569397b209", "name": "EVE Online", "tags": [], "issuers": [], "match_rules": [{"text": "EVE Online", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "EVE Online", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a45b3994-fd70-44aa-9a94-fe72b24b0015", "name": "EVE Online", "icons": [{"id": "62e3ddbf-5afc-4c91-9500-90bbc7937fc2", "name": "EVE Online", "type": "dark"}, {"id": "f65a7a2b-0619-4ccf-9e9a-f5cea01eeedc", "name": "EVE Online", "type": "light"}]}]}, {"id": "c6f1fec4-2325-4a2f-be73-1d4c269cf840", "name": "Qantas", "tags": [], "issuers": [], "match_rules": [{"text": "Qantas", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Qantas", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8ccba7f1-0372-4a0a-95c4-ad92479e3564", "name": "Qantas", "icons": [{"id": "60cc02a7-ca17-4cfe-8b0b-73d1539a91a2", "name": "Qantas", "type": "light"}]}]}, {"id": "c748e680-902e-42ce-ab81-251c01759c52", "name": "Wealthify", "tags": [], "issuers": ["Wealthify"], "match_rules": null, "icons_collections": [{"id": "67628c98-1593-453f-b0d8-e0ded0f9947b", "name": "Wealthify", "icons": [{"id": "690a0722-d36e-47f7-b155-325d84038d04", "name": "Wealthify", "type": "light"}]}]}, {"id": "c755b82b-bb1d-4dca-92ba-15ea4e11b38c", "name": "KnowBe4", "tags": [], "issuers": [], "match_rules": [{"text": "KnowBe4", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "KnowBe4", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f6faceda-7068-474b-9783-a04f15bc3c34", "name": "KnowBe4", "icons": [{"id": "2a17ff9f-f15e-42c1-aca8-3b13aad7aa89", "name": "KnowBe4", "type": "light"}]}]}, {"id": "c755e985-7434-4272-971b-a0af16d4bf11", "name": "Wiki.js", "tags": [], "issuers": ["Wikijs"], "match_rules": [{"text": "wikijs", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "wiki.js", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0f97b5f0-62c7-4de2-8b74-5e9abc62c860", "name": "Wiki.js", "icons": [{"id": "82c01974-d406-46e9-a39a-66a3600805a9", "name": "Wiki.js", "type": "light"}]}]}, {"id": "c7a4a839-06b1-4d5f-90dc-83d7f59b1078", "name": "FaucetPay", "tags": [], "issuers": [], "match_rules": [{"text": "FaucetPay", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FaucetPay", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ae8f94ed-4e9a-49ed-a230-72b2089e676d", "name": "FaucetPay", "icons": [{"id": "55642c2f-d359-4562-b3db-cce0f3ef6850", "name": "FaucetPay", "type": "light"}]}]}, {"id": "c7a9cc0a-c382-40f4-ace1-f0c8881f1342", "name": "Lobsters", "tags": [], "issuers": [], "match_rules": [{"text": "Lobsters", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Lobsters", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0a8c0a5a-ab5e-43bc-90ac-4f43a598f8ee", "name": "Lobsters", "icons": [{"id": "35566bb2-0066-4dd2-8812-7c3cd1cd2428", "name": "Lobsters", "type": "light"}]}]}, {"id": "c8617020-8fdd-4b51-8966-e932de5c6eda", "name": "Wrike", "tags": [], "issuers": [], "match_rules": [{"text": "Wrike", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wrike", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e389f4a5-9ecc-4252-ae2e-d8f13c5071c1", "name": "Wrike", "icons": [{"id": "13c18f70-40fa-41f2-9820-7f46105239ef", "name": "Wrike", "type": "light"}]}]}, {"id": "c8ebf624-c4d2-4e6a-aeac-fc235494ab92", "name": "Cloudflare", "tags": [], "issuers": ["Cloudflare"], "match_rules": [], "icons_collections": [{"id": "7e40ba1b-12c4-46b5-b74d-ab362c21494a", "name": "Cloudflare", "icons": [{"id": "b6ddc181-8984-495a-bde6-76bc46faeaa1", "name": "Cloudflare", "type": "light"}]}]}, {"id": "c91392d9-fc42-4ea8-b297-d2eda9dc13f0", "name": "SaneBox", "tags": [], "issuers": [], "match_rules": [{"text": "SaneBox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SaneBox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "637f3a66-5201-4b59-b934-c4b9b8d52326", "name": "SaneBox", "icons": [{"id": "db76db23-0bbc-4b51-ad21-f5406d644a66", "name": "SaneBox", "type": "light"}]}]}, {"id": "c91e4db8-6001-494d-8912-e09d2d371ecd", "name": "Abode", "tags": [], "issuers": ["my.goabode.com"], "match_rules": null, "icons_collections": [{"id": "486d0e95-a48d-4306-93bf-c926bfc9b8d2", "name": "Abode", "icons": [{"id": "a5f095d7-182e-46da-9ffd-73000e01854d", "name": "Abode", "type": "light"}]}]}, {"id": "c97ebaa8-7380-4e5d-9059-397f2a1fc982", "name": "Vimeo", "tags": [], "issuers": ["Vimeo"], "match_rules": [], "icons_collections": [{"id": "475f50fa-f86f-4af8-a5d1-684c77d9b695", "name": "Vimeo", "icons": [{"id": "1cbd22a2-5f56-49bb-8907-8704d4376c9f", "name": "Vimeo", "type": "light"}]}]}, {"id": "c99dfe6d-6d75-42ce-a1fb-0c8fbbf70d72", "name": "HubSpot", "tags": [], "issuers": ["HubSpot"], "match_rules": [], "icons_collections": [{"id": "a0e66af7-3ade-4ca4-8e3f-3c072826cd83", "name": "HubSpot", "icons": [{"id": "066fe637-44a4-4422-9d46-99b298b0f467", "name": "HubSpot", "type": "light"}]}]}, {"id": "c9babd51-23b7-4f1d-afa0-504bc85f79b5", "name": "Bokio [SE]", "tags": [], "issuers": [], "match_rules": [{"text": "Bokio [SE]", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bokio [SE]", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "71640138-7e8b-456f-a2ca-bffa8fcd385e", "name": "Bokio [SE]", "icons": [{"id": "c46acf8d-e9d5-44d4-a580-b5acc0edbabb", "name": "Bokio [SE]", "type": "light"}]}]}, {"id": "c9c39e2a-c471-46fc-8467-7ac2ee93b7b3", "name": "Yclas", "tags": [], "issuers": [], "match_rules": [{"text": "Yclas", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Yclas", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d8f29de6-819d-4154-90d1-f3172db294bd", "name": "Yclas", "icons": [{"id": "217c0307-3921-46c7-b059-693060e4e5f4", "name": "Yclas", "type": "light"}]}]}, {"id": "c9f0697e-11f3-4cff-b148-a689805507f8", "name": "Hotjar", "tags": [], "issuers": [], "match_rules": [{"text": "Hotjar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hotjar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e93b56b7-4c39-4c54-8c88-922156f75570", "name": "Hotjar", "icons": [{"id": "bf664111-4e5d-4eac-9c9f-690631f55bbb", "name": "Hotjar", "type": "light"}]}]}, {"id": "ca16982c-9738-44c1-af9a-2580a734acd1", "name": "Netlify", "tags": [], "issuers": ["Netlify"], "match_rules": null, "icons_collections": [{"id": "8b27c743-f69f-40bd-9407-3f64418d69d0", "name": "Netlify", "icons": [{"id": "d57e970a-ee4c-498d-aefd-0fc60e69d58c", "name": "Netlify", "type": "light"}]}]}, {"id": "ca2a983d-42be-496f-9dc9-520c78fb6978", "name": "KuCoin", "tags": [], "issuers": ["KuCoin"], "match_rules": [], "icons_collections": [{"id": "acc381d5-2360-47cf-b52e-470f7558f04e", "name": "KuCoin", "icons": [{"id": "cfe3aadc-2fec-4ef4-8345-53990c50f674", "name": "KuCoin", "type": "light"}]}]}, {"id": "ca40c524-92d2-4b52-b434-8e598374d58e", "name": "Telnyx", "tags": [], "issuers": [], "match_rules": [{"text": "Telnyx", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Telnyx", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db17fdb5-4677-4cdb-862b-b198b5e1ff17", "name": "Telnyx", "icons": [{"id": "44bead51-c51d-469c-9460-ee92ddd1f5b7", "name": "Telnyx", "type": "dark"}, {"id": "cb79d63a-b4c3-4cc3-8ff2-5e06b98cb317", "name": "Telnyx", "type": "light"}]}]}, {"id": "ca63153e-5a76-4489-bb08-be0d41331597", "name": "Namebase", "tags": [], "issuers": [], "match_rules": [{"text": "Namebase", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Namebase", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c6835c4d-4af2-49d4-bc4d-2ed9d7e0213b", "name": "Namebase", "icons": [{"id": "aff401ff-d0e0-44ee-a767-daae7241da64", "name": "Namebase", "type": "light"}]}]}, {"id": "cae0a26c-1415-48aa-bffe-9db684db85eb", "name": "LendingClub Bank", "tags": [], "issuers": ["LendingClub Bank"], "match_rules": null, "icons_collections": [{"id": "42e3f181-4ba9-495a-b18c-489a50fa11a2", "name": "LendingClub Bank", "icons": [{"id": "2525526e-d2dd-4553-ad55-c1c5d358f8a8", "name": "LendingClub Bank", "type": "light"}]}]}, {"id": "caf28d65-0de8-4a9d-b8bb-55580d6fa900", "name": "Arduino", "tags": [], "issuers": ["Arduino"], "match_rules": null, "icons_collections": [{"id": "c5ead9f5-db1d-409f-a7d5-93254b048a15", "name": "Arduino", "icons": [{"id": "4969550f-8769-4bbe-9c34-bb3f4ac05151", "name": "Arduino", "type": "light"}]}]}, {"id": "caf4b0df-d8bd-442c-a57e-9c8187239899", "name": "Wordfence", "tags": [], "issuers": ["Wordfence2FA"], "match_rules": [], "icons_collections": [{"id": "5ffc6239-f3e6-40e7-8fba-8c6965992a58", "name": "Wordfence", "icons": [{"id": "ac075e5a-f88a-4c5c-bcc5-fe9c707ee30b", "name": "Wordfence", "type": "light"}]}]}, {"id": "cb571368-e2be-41f0-a4be-c0c41f6d3877", "name": "NuGet", "tags": [], "issuers": [], "match_rules": [{"text": "NuGet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NuGet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "25b1271b-f2f7-4a26-bb6d-dbac165b99e8", "name": "NuGet", "icons": [{"id": "2cbd5130-dccc-4da8-8fef-a2dc0becf640", "name": "NuGet", "type": "light"}]}]}, {"id": "cb5e1f42-22ee-4993-a04f-9476a9c7c2b3", "name": "PlayStation", "tags": ["ps", "sony"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "4a1e6984-020d-4184-8844-1d1465a925cc", "name": "PlayStation", "icons": [{"id": "89c925d3-cac7-4863-ad3a-307a9528f54f", "name": "PlayStation", "type": "dark"}, {"id": "926f0ae5-3828-41e1-90c7-1c3fa1af1e93", "name": "PlayStation", "type": "light"}]}]}, {"id": "cb6e08b9-dd63-45fe-a3c9-ee5a95ef4355", "name": "Avast", "tags": [], "issuers": ["Avast"], "match_rules": [], "icons_collections": [{"id": "108a8ad6-acb2-43f5-a697-5dd1116d4da5", "name": "Avast", "icons": [{"id": "ce8fafd1-fae2-40a9-a14c-e9077b8fd302", "name": "Avast", "type": "light"}]}]}, {"id": "cba07980-5736-41cd-a7ff-7d1ded91908a", "name": "Topicbox", "tags": [], "issuers": [], "match_rules": [{"text": "topicbox.com", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2c1c87ed-e401-4234-bb14-85f632a9cfdc", "name": "Topicbox", "icons": [{"id": "2bec3f18-ac81-4baa-b06e-5482b079f9a5", "name": "user@domain.com", "type": "dark"}, {"id": "81165418-8e30-4d0a-be2c-d50f467137f5", "name": "user@domain.com", "type": "light"}]}]}, {"id": "cbe525d2-edc9-4c35-a2b0-3966b997faa0", "name": "Groups.io", "tags": [], "issuers": [], "match_rules": [{"text": "Groups.io", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Groups.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "650db4d2-dc14-4f5b-896d-134aafdedb23", "name": "Groups.io", "icons": [{"id": "fad42393-8e37-4ab5-a230-998aab0cfb25", "name": "Groups.io", "type": "light"}]}]}, {"id": "cbfbde48-84ba-42e8-b3bf-07d7163e14b7", "name": "Bibox", "tags": [], "issuers": [], "match_rules": [{"text": "Bibox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bibox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0cb9ef76-9f6e-4fff-82e4-010926f9ac50", "name": "Bibox", "icons": [{"id": "b737be60-51bc-403f-865d-7b02c7fafb25", "name": "Bibox", "type": "light"}]}]}, {"id": "cc919f66-b905-4a74-b033-c029308b1092", "name": "NameHero", "tags": [], "issuers": [], "match_rules": [{"text": "NameHero", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NameHero", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "68c86a94-9ae8-4c5f-bc90-43bdc1fc4eae", "name": "NameHero", "icons": [{"id": "7fa8f747-9e3f-4402-b3d7-304e8a552756", "name": "NameHero", "type": "light"}, {"id": "b6a061db-b34a-4388-9e65-e71d9368646b", "name": "NameHero", "type": "dark"}]}]}, {"id": "cc9b76f7-03da-418a-bc22-e0c183d2bcae", "name": "UpdraftPlus", "tags": [], "issuers": [], "match_rules": [{"text": "UpdraftPlus", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "UpdraftPlus", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2183b659-6c73-4679-85fc-3497a51527c0", "name": "UpdraftPlus", "icons": [{"id": "4a9f88db-51d0-4823-9e27-a51bc9b9f891", "name": "UpdraftPlus", "type": "light"}]}]}, {"id": "ccd5c47a-54be-4b11-a4cf-386986bd5c6f", "name": "CDNsun", "tags": [], "issuers": [], "match_rules": [{"text": "CDNsun", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CDNsun", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "91ec291a-f626-475a-ad1d-d1f5c2a72761", "name": "CDNsun", "icons": [{"id": "2efdc772-60d0-4b10-bc92-9dff6a1252e1", "name": "CDNsun", "type": "light"}]}]}, {"id": "ccff9d4a-c6a1-4a0e-9113-e365e81afb89", "name": "SimplyBook", "tags": [], "issuers": [], "match_rules": [{"text": "SimplyBook", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SimplyBook", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dfe4ea38-0fd0-4997-acd5-2ae2ef01056a", "name": "SimplyBook", "icons": [{"id": "fa92c7fb-af52-4688-b8db-0ca4706ed6d6", "name": "SimplyBook", "type": "light"}]}]}, {"id": "cd188f62-fb59-4cd1-8ae5-b64c0aac60a5", "name": "Nimbus Note", "tags": [], "issuers": [], "match_rules": [{"text": "Nimbus Note", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nimbus Note", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4d56a016-ec72-4a3d-ac0e-eefac85a601e", "name": "Nimbus Note", "icons": [{"id": "b3217327-1236-423c-b733-8a51076dd40f", "name": "Nimbus Note", "type": "light"}]}]}, {"id": "cd19a814-a6a4-4d97-a59f-b1a0b96078d2", "name": "Tokopedia", "tags": [], "issuers": [], "match_rules": [{"text": "Tokopedia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tokopedia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "88b27a8b-09f2-4032-9a5b-8eaa3795dd69", "name": "Tokopedia", "icons": [{"id": "afc3a02d-b890-42c3-89ee-f5f4cb245361", "name": "Tokopedia", "type": "light"}]}]}, {"id": "cd2ccd13-eed6-4b66-8a89-8c3f0799b9b6", "name": "MYOB", "tags": [], "issuers": ["MYOB"], "match_rules": [], "icons_collections": [{"id": "1fb872e7-c2b3-40c7-8f1c-711e8589956d", "name": "MYOB", "icons": [{"id": "2c05651a-7a2d-4fa9-bf84-dc3f8c32e12f", "name": "MYOB", "type": "light"}]}]}, {"id": "cdadf221-4f82-448a-a738-c12ccff5898a", "name": "Twitch", "tags": [], "issuers": ["Twitch"], "match_rules": [], "icons_collections": [{"id": "45b960f2-8b2a-4bfe-8bde-4893b1003d26", "name": "Twitch", "icons": [{"id": "e77928c0-8744-43d5-b448-93423fd446fb", "name": "Twitch", "type": "light"}]}]}, {"id": "cdec1fec-5e6f-4470-9a15-60631f6c4383", "name": "Snapchat", "tags": [], "issuers": ["Snapchat"], "match_rules": [], "icons_collections": [{"id": "0ec93e50-3b19-49b2-baca-ba561a1ba2b1", "name": "Snapchat", "icons": [{"id": "2a50eb71-372a-469a-bbb3-308925a7da44", "name": "Snapchat", "type": "light"}]}]}, {"id": "cdf257fe-a683-44c1-8cfa-5785635e161c", "name": "Emsisoft", "tags": [], "issuers": ["MyEmsisoft"], "match_rules": null, "icons_collections": [{"id": "1493a0d8-5101-412e-bcb7-d74d4b18ea87", "name": "Emsisoft", "icons": [{"id": "e077c716-9f21-4b4a-9848-75c8c0d10b01", "name": "Emsisoft", "type": "light"}]}]}, {"id": "cdfb31ce-9d07-42c7-b621-114043bb81e8", "name": "ViaBTC", "tags": [], "issuers": [], "match_rules": [{"text": "ViaBTC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ViaBTC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2961fd45-c8a0-4837-9e83-6cee5318ec7b", "name": "ViaBTC", "icons": [{"id": "2bf20b21-ed5b-4fa4-ba5c-268aa293397b", "name": "ViaBTC", "type": "light"}]}]}, {"id": "cebb233b-1c6f-46cd-bb4e-6ff28f5dd1a5", "name": "Pusher", "tags": [], "issuers": [], "match_rules": [{"text": "Pusher", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pusher", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bbc023f9-fae7-43d5-8117-1ea258cd2fe5", "name": "Pusher", "icons": [{"id": "7a47b825-9d1d-4a0f-9515-b6bdfce41c85", "name": "Pusher", "type": "dark"}, {"id": "e084309f-7f91-423f-9b4d-e53cf0a62d4e", "name": "Pusher", "type": "light"}]}]}, {"id": "cec49110-f206-4e01-83bd-a4f89013ddfe", "name": "Homebridge", "tags": [], "issuers": ["Homebridge"], "match_rules": null, "icons_collections": [{"id": "fefa154a-3cf5-4fcf-9a97-6337ee3f8560", "name": "Homebridge", "icons": [{"id": "afe2a3bd-4dc4-4cbf-b75f-619399b44891", "name": "Homebridge", "type": "light"}]}]}, {"id": "cf118b0d-8972-4491-aec4-eb7821701728", "name": "Vancity", "tags": [], "issuers": [], "match_rules": [{"text": "Vancity", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Vancity", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1216e928-cfa1-42fb-ac46-d54f7b962d82", "name": "Vancity", "icons": [{"id": "1a328ef9-7b00-4cf6-8bac-a04c2eb5b845", "name": "Vancity", "type": "light"}]}]}, {"id": "cf362457-f92c-41b1-b937-75f6c2bc7928", "name": "Mailcow", "tags": [], "issuers": ["Mailcow"], "match_rules": null, "icons_collections": [{"id": "d9eecf73-c935-48d6-9aac-a9a3c63f7d0b", "name": "Mailcow", "icons": [{"id": "1e52ddd7-f0ab-4b57-9e76-6c314fb9fa45", "name": "Mailcow", "type": "light"}]}]}, {"id": "cf415505-1dc3-4bb7-a9be-1fe85b736cb6", "name": "University of Notre Dame", "tags": [], "issuers": [], "match_rules": [{"text": "University of Notre Dame", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Notre Dame", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "00595fa8-96d3-48cb-85fe-af8b6967db08", "name": "University of Notre Dame", "icons": [{"id": "45cfa8ff-962c-4c4b-b361-1d3c9205b81a", "name": "University of Notre Dame", "type": "light"}]}]}, {"id": "cf794e79-afa6-4c3b-ba61-7e119f2f5c9f", "name": "CleverTap", "tags": [], "issuers": [], "match_rules": [{"text": "CleverTap", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CleverTap", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "87abfbeb-863a-456a-a2d6-f7c77a61206b", "name": "CleverTap", "icons": [{"id": "0a0fcc92-0777-4fff-a4ed-f56a6446a3d0", "name": "CleverTap", "type": "light"}]}]}, {"id": "cfbb724a-5f4d-4da6-bfb5-352fee268e55", "name": "OLG", "tags": [], "issuers": [], "match_rules": [{"text": "OLG", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OLG", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a4f3c3d4-0fb4-43f2-9d6d-8de3cfb15652", "name": "OLG", "icons": [{"id": "741f3d7d-d0fa-43e0-abb7-f3b137f7105a", "name": "OLG", "type": "light"}]}]}, {"id": "cfd72b78-de9e-47dd-a2d0-db3b45a7e0d8", "name": "Sonic", "tags": [], "issuers": [], "match_rules": [{"text": "Sonic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sonic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "17bfbfd9-e1d7-429c-a186-4ce5eb989a50", "name": "Sonic", "icons": [{"id": "b3ae88ca-af7a-4156-96ec-2ea14da7e2d2", "name": "Sonic", "type": "light"}]}]}, {"id": "d0304fa7-f304-40e2-93c4-b4d4d3e95486", "name": "Cisco Meraki", "tags": [], "issuers": [], "match_rules": [{"text": "Meraki", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "30d5083a-e9fd-43c0-a011-698e431fb409", "name": "Cisco Meraki", "icons": [{"id": "9fb9e09a-5513-496d-be48-73f4e334a9eb", "name": "Cisco Meraki", "type": "light"}]}]}, {"id": "d0d6f366-ccba-4bef-9e3b-8abd120897bb", "name": "Compose", "tags": [], "issuers": [], "match_rules": [{"text": "Compose", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Compose", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9b38d20c-50db-4c41-8958-6fa90cc556e8", "name": "Compose", "icons": [{"id": "b683ce74-420a-4c3d-a780-94ff3c0b896f", "name": "Compose", "type": "light"}, {"id": "f0115a83-e80d-4a8f-bb3c-7280c47663d8", "name": "Compose", "type": "dark"}]}]}, {"id": "d0e58424-5c84-43e5-b508-c3d59dcd033a", "name": "Smartly.io", "tags": [], "issuers": [], "match_rules": [{"text": "Smartly.io", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Smartly.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3e808796-a00a-4d57-9d72-773645e1990a", "name": "Smartly.io", "icons": [{"id": "23cc7dc8-1be6-4dbc-8a62-5b1d7108675d", "name": "Smartly.io", "type": "light"}]}]}, {"id": "d0edd58d-e40a-444d-a440-e4907b0a22d6", "name": "Bitwarden", "tags": [], "issuers": ["Bitwarden"], "match_rules": [], "icons_collections": [{"id": "6ba06a11-e5d2-493a-950b-cb0d400bc6db", "name": "Bitwarden", "icons": [{"id": "2185da04-3d82-4fdc-9d20-3d670cf31073", "name": "Bitwarden", "type": "dark"}, {"id": "e05b1d22-3d97-41fb-9fab-7dd243abe822", "name": "Bitwarden", "type": "light"}]}]}, {"id": "d1a264b0-a140-41f0-a810-221b8c5b8fe4", "name": "TherapyNotes", "tags": [], "issuers": [], "match_rules": [{"text": "TherapyNotes", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TherapyNotes", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "20ab5234-cf6a-4d98-8941-47346f0a6165", "name": "TherapyNotes", "icons": [{"id": "3af071b5-d205-4574-a8c8-f9d4b87c8794", "name": "TherapyNotes", "type": "light"}]}]}, {"id": "d1f4fd42-38e0-4d8d-9ff4-4f1f7d9f0a8e", "name": "Rubrik", "tags": [], "issuers": ["Rubrik"], "match_rules": null, "icons_collections": [{"id": "e4c14f12-668c-49fc-b0b5-dec9830e5ce1", "name": "Rubrik", "icons": [{"id": "84d9624b-678a-4236-a10b-2c9d0be33df4", "name": "Rubrik", "type": "light"}]}]}, {"id": "d241edff-480f-4201-840a-5a1c1d1323c2", "name": "Steam", "tags": [], "issuers": ["Steam"], "match_rules": [], "icons_collections": [{"id": "d5fd5765-bc30-407a-923f-e1dfd5cec49f", "name": "STEAM", "icons": [{"id": "09f120c3-7f23-4e4e-8e41-61d3087ef087", "name": "STEAM", "type": "light"}]}]}, {"id": "d25508f8-c64b-41d3-905a-e95d484b034a", "name": "Zonda", "tags": [], "issuers": ["BitBay", "ZondaAuth"], "match_rules": [], "icons_collections": [{"id": "b8b16d9f-52ec-471f-bfc0-fd1e6f9d60f3", "name": "Zonda", "icons": [{"id": "b31a3f2b-b074-4b49-8f7f-e16dd95ba7fb", "name": "Zonda", "type": "dark"}, {"id": "bfb6f657-2c6c-4a32-820e-69222f85ccae", "name": "Zonda", "type": "light"}]}]}, {"id": "d28a884f-3f49-4c10-b3f0-40d8f2a356c1", "name": "North Carolina State University", "tags": [], "issuers": [], "match_rules": [{"text": "North Carolina State University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "North Carolina State University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ba14d0cb-8f0e-4dbc-be7d-1d7fba074a76", "name": "North Carolina State University", "icons": [{"id": "f54daab1-9eb9-47f9-b2ed-45fa8bf62bc2", "name": "North Carolina State University", "type": "light"}]}]}, {"id": "d2df94e1-fcf9-4f47-b605-f123a7d8edf5", "name": "Trovo", "tags": [], "issuers": [], "match_rules": [{"text": "Trovo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Trovo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1309aa5b-344c-4058-b1eb-7211c6ea5361", "name": "Trovo", "icons": [{"id": "409b0a59-dcdd-47f9-95c1-ba143cbf9d66", "name": "Trovo", "type": "light"}]}]}, {"id": "d3085b71-88d3-4c41-bd73-d029fc90e401", "name": "EmailMeForm", "tags": [], "issuers": [], "match_rules": [{"text": "EmailMeForm", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "EmailMeForm", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a9c3ae21-a596-4103-8e25-f867b55d5a96", "name": "EmailMeForm", "icons": [{"id": "1c373a03-a8b4-4c68-8e3b-6d5cd02a09d7", "name": "EmailMeForm", "type": "light"}]}]}, {"id": "d30dada7-c3b8-4f37-9cdb-4fdbe649ba8a", "name": "Availity Essentials", "tags": [], "issuers": [], "match_rules": [{"text": "Availity Essentials", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Availity Essentials", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6f24dc2c-5a8d-416c-9b71-da36e1ae0e88", "name": "Availity Essentials", "icons": [{"id": "13889832-ebd6-4b8c-a9fc-0aa6882f0713", "name": "Availity Essentials", "type": "light"}]}]}, {"id": "d33dd19c-ce43-45a2-b204-fc636f69e75e", "name": "Roblox", "tags": [], "issuers": ["Roblox"], "match_rules": [], "icons_collections": [{"id": "e37670c2-0870-48ad-b736-1d8e0da7e635", "name": "Roblox", "icons": [{"id": "c76caac1-299e-46a0-ac0f-3504ec4f3acb", "name": "Roblox", "type": "dark"}, {"id": "ee3b913d-ff41-4c52-b5f3-f640d0689ba9", "name": "Roblox", "type": "light"}]}]}, {"id": "d353dc43-cacd-4618-9169-6bda93d940f1", "name": "Kickstarter", "tags": [], "issuers": ["Kickstarter"], "match_rules": [], "icons_collections": [{"id": "aaaef857-a3e1-4a88-91ec-f982aef0cf0b", "name": "Kickstarter", "icons": [{"id": "39917475-e8c8-42f6-aabd-5d9ec8aaf93d", "name": "Kickstarter", "type": "light"}]}]}, {"id": "d3663717-ff77-4dce-9cab-48204f1a30c1", "name": "Flywheel", "tags": [], "issuers": [], "match_rules": [{"text": "Flywheel", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Flywheel", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5c578a2d-cff4-455b-b840-ddcffd333563", "name": "Flywheel", "icons": [{"id": "4ecaa5e9-682b-46e7-b161-1646331ddaef", "name": "Flywheel", "type": "light"}]}]}, {"id": "d3b5e2f2-96c2-4fa4-8b2d-38e3faf8fc3e", "name": "GoCardless", "tags": [], "issuers": [], "match_rules": [{"text": "GoCardless", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GoCardless", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "965d9c91-11ba-4703-99c1-544695135643", "name": "GoCardless", "icons": [{"id": "40af1500-f112-433b-b323-048e4d74ec01", "name": "GoCardless", "type": "light"}, {"id": "c1718b75-d0bf-4efd-9dee-993558d489b0", "name": "GoCardless", "type": "dark"}]}]}, {"id": "d476a817-d8cd-4a39-90dc-88cf65e97c66", "name": "NS1", "tags": [], "issuers": [], "match_rules": [{"text": "NS1", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NS1", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "363a3a90-3180-4edf-bf17-4e0b05d6a72b", "name": "NS1", "icons": [{"id": "423a6ae4-a3d2-4e2b-8cf2-93c8b286850f", "name": "NS1", "type": "dark"}, {"id": "88d74315-9e2b-47d1-8594-184950af74aa", "name": "NS1", "type": "light"}]}]}, {"id": "d4eaba7a-4fb0-4447-96b1-005fbf8cdf38", "name": "Heroku", "tags": [], "issuers": ["Heroku"], "match_rules": [], "icons_collections": [{"id": "eafabe79-26cb-43f3-b2cf-027d155407a9", "name": "Heroku", "icons": [{"id": "c46798ca-6f85-46bd-b97c-35c4214edf6f", "name": "Heroku", "type": "light"}]}]}, {"id": "d5085cf3-4521-4804-a88a-f78241546308", "name": "Cordial", "tags": [], "issuers": [], "match_rules": [{"text": "Cordial", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cordial", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c917dbf8-f285-452e-b5c3-87ccca406c60", "name": "Cordial", "icons": [{"id": "f570edb9-550c-460b-9c0a-21a8049e4131", "name": "Cordial", "type": "light"}]}]}, {"id": "d50d085c-87a1-4c03-80aa-d2384971c6f3", "name": "Amazon", "tags": [], "issuers": ["Amazon"], "match_rules": [], "icons_collections": [{"id": "96b374dc-c981-4e55-af2e-9272b43455a1", "name": "Amazon", "icons": [{"id": "b0ef1097-e8f6-45a4-a6db-1b79140572af", "name": "Amazon ", "type": "dark"}, {"id": "ef9eca9d-8fd4-434d-8a98-c93361d21fbb", "name": "Amazon", "type": "light"}]}]}, {"id": "d50e1bc1-d85a-4323-aced-b0a343b12426", "name": "RunSignUp", "tags": [], "issuers": [], "match_rules": [{"text": "RunSignUp", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RunSignUp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7fe635ad-3cb2-4c1c-a863-d08699caaeec", "name": "RunSignUp", "icons": [{"id": "cd31da7b-de50-4e26-977e-ac0ee7cdfd2b", "name": "RunSignUp", "type": "light"}]}]}, {"id": "d519742d-db19-440a-b9af-cd4c31a58603", "name": "BitMax", "tags": [], "issuers": [], "match_rules": [{"text": "BitMax", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "f243affd-ca1c-4f7a-9bb6-bf087021f8b8", "name": "BitMax", "icons": [{"id": "09099990-0a59-417b-a6af-f6e402f30ebb", "name": "BitMax", "type": "light"}]}]}, {"id": "d54e6374-570e-445f-abf8-608e8bca5162", "name": "Gate.io", "tags": [], "issuers": [], "match_rules": [{"text": "Gate.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8bb211bb-7829-482d-b9fb-51bc5d99710f", "name": "Gate.io", "icons": [{"id": "223bbe44-ca74-460a-9fdf-700b7dd4b3af", "name": "Gate.io", "type": "light"}]}]}, {"id": "d5e2786c-9601-4b11-a33c-9f818baff264", "name": "NEXO", "tags": [], "issuers": ["Nexo"], "match_rules": [], "icons_collections": [{"id": "cb8690c9-9d0a-4d87-95e2-26de44529acb", "name": "NEXO", "icons": [{"id": "d4956991-55c0-451c-a8c2-c681a3b8bde0", "name": "NEXO", "type": "light"}]}]}, {"id": "d64758c3-18de-4d77-9139-b60738d57f4b", "name": "Spring", "tags": [], "issuers": [], "match_rules": [{"text": "Spring", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Spring", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3912fbbd-5c38-420f-9b20-6536eed22179", "name": "Spring", "icons": [{"id": "c42adbbd-6d9e-48a0-9f44-53ae8b0dc982", "name": "Spring", "type": "light"}]}]}, {"id": "d6570704-868f-4cca-990f-3f0fdceae277", "name": "Bybit", "tags": [], "issuers": ["Bybit"], "match_rules": [], "icons_collections": [{"id": "0187c518-0edc-4892-9fb5-46c10c7ac16b", "name": "Bybit", "icons": [{"id": "a5025e9c-99af-45f4-99e5-d8445438fe76", "name": "Bybit", "type": "light"}, {"id": "f691a48f-f3c5-457e-aee2-75022e23aa7f", "name": "Bybit", "type": "dark"}]}]}, {"id": "d657fe1b-6eb7-47a7-aed7-51f6773655e7", "name": "MaiCoin", "tags": [], "issuers": [], "match_rules": [{"text": "MaiCoin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "MaiCoin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ffbb48d4-7e95-4b01-bd54-66092bc38328", "name": "MaiCoin", "icons": [{"id": "1e1d4b78-328f-440c-90ee-7247afe30bf4", "name": "MaiCoin", "type": "light"}]}]}, {"id": "d65f8c6f-e47c-4df3-88be-579eddfd8464", "name": "Aiven", "tags": [], "issuers": [], "match_rules": [{"text": "Aiven", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Aiven", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2583b855-a6aa-4199-bd3e-fa15f184ba61", "name": "Aiven", "icons": [{"id": "dbc6e3c8-2edc-47ed-b732-38f13ee2e03e", "name": "Aiven", "type": "light"}]}]}, {"id": "d6850b85-7648-4558-b06d-01b91bf83dfe", "name": "BitBar", "tags": [], "issuers": [], "match_rules": [{"text": "BitBar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitBar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a9f58c40-a348-401f-9671-17afd77de40e", "name": "BitBar", "icons": [{"id": "1f0a8e52-8306-4421-a472-6ca1309579f5", "name": "BitBar", "type": "light"}]}]}, {"id": "d696bbdf-5075-4f8d-af54-afb334d704c5", "name": "PowerReviews", "tags": [], "issuers": [], "match_rules": [{"text": "PowerReviews", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "PowerReviews", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fbf9cf79-afa8-4e26-9b46-1bc378c8764c", "name": "PowerReviews", "icons": [{"id": "ccea8844-d1dd-4d09-bec9-32401d8e8799", "name": "PowerReviews", "type": "light"}]}]}, {"id": "d6c385ef-7a96-4788-843d-7d071bd4d0f6", "name": "Emma Email Marketing", "tags": [], "issuers": [], "match_rules": [{"text": "Emma Email Marketing", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Emma Email Marketing", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "300464d4-ee2b-4dfb-bd3b-3c0ea0e75e7a", "name": "Emma Email Marketing", "icons": [{"id": "4b80b83f-d653-4c81-b588-19597f482453", "name": "Emma Email Marketing", "type": "light"}, {"id": "e6a53422-36a4-48be-9c71-fc9698ff5c88", "name": "Emma Email Marketing", "type": "dark"}]}]}, {"id": "d6c6d348-eceb-45e3-bb22-fd25c08b8243", "name": "Sonix", "tags": [], "issuers": [], "match_rules": [{"text": "Sonix", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sonix", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2f43ac34-4290-4cc7-b337-581e6cf1be57", "name": "Sonix", "icons": [{"id": "3e84926b-6334-488e-a0ab-7d9a916d401f", "name": "Sonix", "type": "light"}]}]}, {"id": "d6fb6986-f7bd-4de7-a541-25362b27a2bc", "name": "Coinut", "tags": [], "issuers": [], "match_rules": [{"text": "Coinut", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinut", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d86665e5-0401-40a2-9a25-0700b24277c0", "name": "Coinut", "icons": [{"id": "5601880f-c668-4a52-a903-49ec4d9abc3b", "name": "Coinut", "type": "light"}]}]}, {"id": "d70c9e1a-69b7-4a5e-8745-ed8d45737060", "name": "Envato", "tags": [], "issuers": ["Envato"], "match_rules": null, "icons_collections": [{"id": "7d3744c4-fcec-47d7-b660-640c9d04eff9", "name": "Envato", "icons": [{"id": "8e504e9e-f362-464d-80e8-c88861c55bd5", "name": "Envato", "type": "light"}]}]}, {"id": "d7b6f20a-b1cc-4aa4-86aa-02efb00244b7", "name": "SiteGround", "tags": [], "issuers": [], "match_rules": [{"text": "SiteGround", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SiteGround", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fd0820ec-c5d5-41c1-a73c-93efd4578eee", "name": "SiteGround", "icons": [{"id": "e3c4c211-3266-48dc-8805-57f57cd66fa4", "name": "SiteGround", "type": "light"}, {"id": "fae6fea6-2d84-4a15-bfbd-dd1f51e8ff0f", "name": "SiteGround", "type": "dark"}]}]}, {"id": "d7cbfb18-60b2-47a6-b14f-c64e4c4b0f2a", "name": "Serverspace", "tags": [], "issuers": [], "match_rules": [{"text": "Serverspace", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Serverspace", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d998ceff-02af-4246-b1d5-f50139e85fd2", "name": "Serverspace", "icons": [{"id": "a9575141-2621-4f66-bea0-39df4e258f33", "name": "Serverspace", "type": "light"}]}]}, {"id": "d816f562-0ad3-4f13-bc64-17083336ec77", "name": "Formsite", "tags": [], "issuers": [], "match_rules": [{"text": "Formsite", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Formsite", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f5e17c5f-06e2-43ef-b738-55e41dbeb6cc", "name": "Formsite", "icons": [{"id": "cf433a5e-0658-461f-820f-810503a3cfcd", "name": "Formsite", "type": "light"}]}]}, {"id": "d83858e9-f030-40e2-a3cc-20a902e97cec", "name": "Mountain America Credit Union", "tags": [], "issuers": [], "match_rules": [{"text": "Mountain America Credit Union", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mountain America Credit Union", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "044c8ff6-2a87-4f25-829b-afb4d302472b", "name": "Mountain America Credit Union", "icons": [{"id": "44b9ef12-49fb-442f-95f8-c6b3a2ebb9e8", "name": "Mountain America Credit Union", "type": "light"}]}]}, {"id": "d85a3247-bf4e-4c8d-aae8-a17f896013de", "name": "Preceda", "tags": [], "issuers": ["Preceda"], "match_rules": [], "icons_collections": [{"id": "580a11d7-69ad-4aa8-ba4b-1d9f5c23474e", "name": "Preceda", "icons": [{"id": "24f09611-2127-462c-8706-247c5571a402", "name": "Preceda", "type": "dark"}, {"id": "4705a378-bcbd-4342-8cd2-ef6049052c58", "name": "Preceda", "type": "light"}]}]}, {"id": "d8ac3674-439c-431d-996f-73782390a870", "name": "DreamHost", "tags": [], "issuers": [], "match_rules": [{"text": "DreamHost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DreamHost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ecc7446c-78fa-4c68-95ba-9a27d7da3549", "name": "DreamHost", "icons": [{"id": "8be927c6-9670-4235-9667-aec662a06408", "name": "DreamHost", "type": "light"}, {"id": "9d8d6e3c-66c7-4d11-aae1-ba65efa4d5d9", "name": "DreamHost", "type": "dark"}]}]}, {"id": "d8e293b5-918e-4e08-99f1-5076493ce7c3", "name": "Truth Social", "tags": [], "issuers": ["truthsocial.com"], "match_rules": null, "icons_collections": [{"id": "d08818cf-2843-46c1-af6e-2989750838d2", "name": "Truth Social", "icons": [{"id": "01969b11-f90a-403a-84f3-ea90bec9332a", "name": "Truth Social", "type": "light"}]}]}, {"id": "d94b0045-e3e9-415d-a585-89cf2b29e466", "name": "Taboola", "tags": [], "issuers": [], "match_rules": [{"text": "Taboola", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Taboola", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2d1132cd-59f5-4e61-a383-6a0d58f0a14e", "name": "Taboola", "icons": [{"id": "830b9f7b-64b9-4569-8834-d535a78d397b", "name": "Taboola", "type": "light"}]}]}, {"id": "d9f8dc5a-9111-4e5e-8568-9d88849481b5", "name": "CoinFalcon", "tags": [], "issuers": [], "match_rules": [{"text": "CoinFalcon", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinFalcon", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "03f332d0-de3c-488c-a768-29f7db373d79", "name": "CoinFalcon", "icons": [{"id": "0e525401-c29d-42e0-a112-025eb0ea38d1", "name": "CoinFalcon", "type": "light"}]}]}, {"id": "da8084c3-9115-4879-9900-c5f41b7a98d6", "name": "Wealthfront", "tags": [], "issuers": [], "match_rules": [{"text": "Wealthfront", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wealthfront", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "da3befaa-56c1-4b79-81af-6b35e84d7824", "name": "Wealthfront", "icons": [{"id": "c4102377-ecbe-461f-8c8d-436d7c47a086", "name": "Wealthfront", "type": "light"}]}]}, {"id": "dad21619-8e8d-44fd-9b85-a4cc8d6b56da", "name": "MyAnimeList", "tags": [], "issuers": [], "match_rules": [{"text": "myanimelist", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "90bb2f2c-c3ce-4b07-9a12-44fcebd6170e", "name": "MyAnimeList", "icons": [{"id": "790b1bdc-7989-4191-9c02-398b61c7256d", "name": "MyAnimeList", "type": "light"}]}]}, {"id": "dadf55ec-372d-4dc9-b025-208b52485720", "name": "Faucet Crypto", "tags": [], "issuers": [], "match_rules": [{"text": "Faucet Crypto", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Faucet Crypto", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a9087677-4f20-404b-920c-b84ca36e2330", "name": "Faucet Crypto", "icons": [{"id": "0885aee6-e4ef-467f-bb3c-84f4145a005f", "name": "Faucet Crypto", "type": "light"}, {"id": "88dd735f-3779-4fec-b73d-cc6d3d873070", "name": "Faucet Crypto", "type": "dark"}]}]}, {"id": "dae3b24e-f732-4ad1-affb-71a7068896d6", "name": "Bithumb", "tags": [], "issuers": [], "match_rules": [{"text": "Bithumb", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bithumb", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db821708-cb2b-49df-bf15-46917ceebccb", "name": "Bithumb", "icons": [{"id": "249c7cab-4ef3-4354-bc4b-b076fdae64f1", "name": "Bithumb", "type": "light"}]}]}, {"id": "db8726ee-c246-4e75-bff3-422c9c0e5efb", "name": "OpenSRS", "tags": [], "issuers": [], "match_rules": [{"text": "OpenSRS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OpenSRS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "015ed54f-c8b8-49e5-94c5-03ba6addea53", "name": "OpenSRS", "icons": [{"id": "96eb21c4-ae03-40b5-b0b7-855020c7ccd0", "name": "OpenSRS", "type": "light"}]}]}, {"id": "dba78fe8-da79-4c21-8f8d-6e9c0534c2d6", "name": "AllMyLinks", "tags": [], "issuers": [], "match_rules": [{"text": "AllMyLinks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AllMyLinks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eff97b47-0a43-42e3-b276-cb235e1457dd", "name": "AllMyLinks", "icons": [{"id": "a911be21-5b25-4f09-972d-64c6787d47b9", "name": "AllMyLinks", "type": "light"}]}]}, {"id": "dbbeb162-83e6-45b2-b1a2-11300ae18dd0", "name": "Gmail", "tags": [], "issuers": [], "match_rules": [], "icons_collections": [{"id": "2020274e-f0ae-4643-ad56-af73612ae468", "name": "Gmail", "icons": [{"id": "d91715be-1218-4069-81f3-6bedd94afb30", "name": "Gmail", "type": "light"}]}]}, {"id": "dc08c6db-d095-4bac-a64b-275b2f7843ee", "name": "Putler", "tags": [], "issuers": [], "match_rules": [{"text": "Putler", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Putler", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bdb60032-34a6-47f1-805e-bb91b0dbee03", "name": "Putler", "icons": [{"id": "2e43177a-e330-473a-919a-b4a9bc9e0a73", "name": "Putler", "type": "light"}]}]}, {"id": "dc9099bf-f506-4713-b206-bcc4f802ed1f", "name": "Deputy", "tags": [], "issuers": [], "match_rules": [{"text": "Deputy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Deputy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3dad9223-de78-475e-b252-f341536edbab", "name": "Deputy", "icons": [{"id": "40ca4ded-b0ef-4e77-959a-ebf3ccb71a08", "name": "Deputy", "type": "light"}]}]}, {"id": "dc9a8bd9-6e0f-4d9a-a8de-5baf1b4141d6", "name": "Techlore Discussions", "tags": [], "issuers": ["Techlore%20Discussions", "Techlore Discussions", "Techlore+Discussions"], "match_rules": [], "icons_collections": [{"id": "ff5d6591-9c33-4524-be54-4698032a7a8d", "name": "Techlore Discussions", "icons": [{"id": "9c102fda-7a8a-4561-b098-ebd654d4260e", "name": "Techlore Discussions", "type": "light"}]}]}, {"id": "dcbc5cc0-60d3-4235-9430-4a8c06286283", "name": "Nextcloud", "tags": [], "issuers": ["Nextcloud"], "match_rules": [], "icons_collections": [{"id": "caa08091-57d6-409d-a45e-f684cdbc79b0", "name": "Nextcloud", "icons": [{"id": "1d3c6f8b-dd46-4529-812e-f2d3c4bf9567", "name": "Nextcloud", "type": "light"}]}]}, {"id": "dcf1a91b-e527-4c40-9a5d-c34ea2f1c680", "name": "Twingate", "tags": [], "issuers": ["Twingate"], "match_rules": null, "icons_collections": [{"id": "15ca416a-3212-4db7-9bca-60548203b411", "name": "Twingate", "icons": [{"id": "7bc5475c-c581-48fc-a565-6321d902682f", "name": "Twingate", "type": "light"}, {"id": "93b09059-80e5-4d35-85e7-27d7ea682aef", "name": "Twingate", "type": "dark"}]}]}, {"id": "dd1fc65b-34a9-4c97-b3a1-f7da1385ce61", "name": "Minergate", "tags": [], "issuers": ["minergate.com"], "match_rules": [], "icons_collections": [{"id": "1054c554-f8bc-46c5-9c79-f7a8b74dd5fe", "name": "Minergate", "icons": [{"id": "6b9ce89a-9add-4b34-83c4-13c5cc1e8dba", "name": "Minergate", "type": "light"}]}]}, {"id": "dd201816-6a50-43ee-ac67-220f3d569bdb", "name": "SPID", "tags": [], "issuers": ["ARUBA"], "match_rules": null, "icons_collections": [{"id": "2a90f267-5e37-4003-a114-e05892e5f4df", "name": "SPID", "icons": [{"id": "6446f8ea-5d6c-4f8d-b453-9058295c77e6", "name": "SPID", "type": "light"}, {"id": "b179582b-fb0f-4bd6-938c-dac6d6beaae2", "name": "SPID", "type": "dark"}]}]}, {"id": "dd48038e-54f0-4d26-b6e7-682d75b0ff00", "name": "FreeTaxUSA", "tags": [], "issuers": [], "match_rules": [{"text": "FreeTaxUSA", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FreeTaxUSA", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "27b3d372-9613-43cf-b9b4-9bab86411c77", "name": "FreeTaxUSA", "icons": [{"id": "548817ea-3007-4280-adcb-959416e35c7a", "name": "FreeTaxUSA", "type": "light"}]}]}, {"id": "dd56b47d-3f3b-4254-89fa-804cfc63bffb", "name": "Batch", "tags": [], "issuers": [], "match_rules": [{"text": "Batch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Batch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e1e27f88-1825-4746-bb36-581e9ca7aaf6", "name": "Batch", "icons": [{"id": "5d323e47-3734-44c4-8f8b-ea2847615584", "name": "Batch", "type": "dark"}, {"id": "b9cdd714-81d4-4681-9044-3b72b8c8467a", "name": "Batch", "type": "light"}]}]}, {"id": "dd6a9a01-52d7-4b5e-9f74-0ca68538a070", "name": "Crowdin", "tags": [], "issuers": ["crowdin.com"], "match_rules": null, "icons_collections": [{"id": "6059f9e8-d90b-4cca-acea-ae8797837adb", "name": "Crowdin", "icons": [{"id": "3625c1e6-c020-49c8-912e-ffd5f19f6f1f", "name": "Crowdin", "type": "light"}, {"id": "651adfb1-9ed0-4a58-bcab-7d1a24f6f19a", "name": "Crowdin", "type": "dark"}]}]}, {"id": "ddb8874c-4fb7-46af-b478-5abb52f30add", "name": "2Checkout", "tags": [], "issuers": [], "match_rules": [{"text": "2Checkout", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "2Checkout", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "16a03f1c-aad1-417b-875f-3dadc9e38f2d", "name": "2Checkout", "icons": [{"id": "4bfc8855-5ffb-418e-821b-04174f7c3bf4", "name": "2Checkout", "type": "light"}]}]}, {"id": "de058813-b5a8-49f0-b9d6-ec5fe0bd1864", "name": "Cryptohopper", "tags": [], "issuers": [], "match_rules": [{"text": "Cryptohopper", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cryptohopper", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a432069e-3fda-4f25-8907-d53c019b14d9", "name": "Cryptohopper", "icons": [{"id": "4c8bf28a-f8b8-4eac-8b26-1c1549fb3ace", "name": "Cryptohopper", "type": "light"}]}]}, {"id": "de1f18fb-d73a-4136-a675-801911202565", "name": "Principal", "tags": [], "issuers": [], "match_rules": [{"text": "Principal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Principal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cd75e4f1-e661-40c4-b6f4-ea5dcb66567e", "name": "Principal", "icons": [{"id": "49ffb3b7-80fe-48a4-9462-802d93e00530", "name": "Principal", "type": "light"}]}]}, {"id": "de59d073-72a6-4ff5-97ff-5ce7a56d0db2", "name": "CoinPayments", "tags": [], "issuers": [], "match_rules": [{"text": "CoinPayments", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinPayments", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a91bbfe3-365c-4c04-99c0-247506f51897", "name": "CoinPayments", "icons": [{"id": "93aabf0b-b050-4eb9-99d0-d3721e58a3b2", "name": "CoinPayments", "type": "light"}]}]}, {"id": "de8611e4-4b83-4b9b-b252-94fd02460916", "name": "A2 Hosting", "tags": [], "issuers": [], "match_rules": [{"text": "A2 Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "A2 Hosting", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "A2Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "A2Hosting", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4fd0608c-3721-4349-9f57-9930521f5bb5", "name": "A2 Hosting", "icons": [{"id": "b82275c0-d8f1-4307-aa39-e1beac44f7ad", "name": "A2 Hosting", "type": "light"}]}]}, {"id": "de9a762b-166b-465e-a1c4-863937c9e337", "name": "Gab Social", "tags": [], "issuers": ["gab.com"], "match_rules": null, "icons_collections": [{"id": "20911304-bff2-4754-8b53-15a43f2aadf0", "name": "Gab Social", "icons": [{"id": "33b98508-602d-419d-9565-1e360f7609ee", "name": "Gab Social", "type": "light"}]}]}, {"id": "dec50470-32c3-4f63-baf1-40e82b961f10", "name": "Raygun", "tags": [], "issuers": [], "match_rules": [{"text": "Raygun", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Raygun", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77977d70-b13e-4b8f-a420-9e0412e0eb46", "name": "Raygun", "icons": [{"id": "f1e66663-b297-4c31-8555-67b992981f53", "name": "Raygun", "type": "light"}]}]}, {"id": "deead8dd-c9e3-463a-8c73-1e75c5ec13cf", "name": "Rockstar Games", "tags": [], "issuers": ["Rockstar+Games", "Rockstar Games"], "match_rules": [], "icons_collections": [{"id": "fcb5345a-dacd-4898-884d-162c8263fd62", "name": "Rockstar Games", "icons": [{"id": "8831a88a-d05d-4ae0-95fe-00d5684c4656", "name": "Rockstar Games", "type": "light"}]}]}, {"id": "def23ee5-6f78-4803-a744-965b688a9b10", "name": "STEX", "tags": [], "issuers": [], "match_rules": [{"text": "STEX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "STEX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5fb72425-b149-4ad7-8adb-e6fbf9a4c506", "name": "STEX", "icons": [{"id": "21fbaf75-d863-4dc3-8d80-822b47bf69fc", "name": "Stex", "type": "dark"}, {"id": "e116c531-fa7d-4b49-b1b4-1aa894c3d34f", "name": "STEX", "type": "light"}]}]}, {"id": "df008d68-670f-4188-bf4b-2cd6a05f0060", "name": "NETELLER", "tags": [], "issuers": [], "match_rules": [{"text": "NETELLER", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NETELLER", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dfdfa67e-2017-4557-8429-38ed6726bc5b", "name": "NETELLER", "icons": [{"id": "329a7a04-ceeb-476c-88d4-bbde933e5560", "name": "NETELLER", "type": "light"}]}]}, {"id": "df07b6de-6b7a-4cd2-93c8-eb3f84fd8d3f", "name": "Optimizely", "tags": [], "issuers": [], "match_rules": [{"text": "Optimizely", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Optimizely", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "45918e70-6145-4808-bfaf-769e5f7b7185", "name": "Optimizely", "icons": [{"id": "a899e33c-4d7e-4c86-a6a0-994ea89e4c77", "name": "Optimizely", "type": "light"}]}]}, {"id": "df8f7dea-9b3d-4058-bd1e-4a2e8d93f45e", "name": "NetSuite", "tags": [], "issuers": ["production.netsuite.com"], "match_rules": [], "icons_collections": [{"id": "cb4c0bb5-5c0c-43de-aa26-6ada823f0466", "name": "NetSuite", "icons": [{"id": "797abb98-44a6-4422-952f-e19826fcdd00", "name": "NetSuite", "type": "light"}]}]}, {"id": "dfc48abc-3fd9-4456-833f-fcaa52691ccc", "name": "Stripe", "tags": [], "issuers": ["Stripe"], "match_rules": [], "icons_collections": [{"id": "755cdcde-a73e-49a1-adf4-a6cc2b85174c", "name": "Stripe", "icons": [{"id": "b4bcbfdb-661a-4e9f-805e-857e91854bde", "name": "Stripe", "type": "light"}]}]}, {"id": "dfe680b6-d728-454d-86fb-e97f19703d12", "name": "PythonAnywhere", "tags": [], "issuers": [], "match_rules": [{"text": "PythonAnywhere", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "PythonAnywhere", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6edba584-a91c-4d58-9ded-b18733083ab9", "name": "PythonAnywhere", "icons": [{"id": "569998ac-1b05-4b06-a152-244067e70144", "name": "PythonAnywhere", "type": "light"}, {"id": "6b4dd5a6-de58-45f9-801e-938fe22da2a1", "name": "PythonAnywhere", "type": "dark"}]}]}, {"id": "e0181c49-480e-4623-bbe6-6e1a3c1ae6a4", "name": "Coinify", "tags": [], "issuers": [], "match_rules": [{"text": "Coinify", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinify", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fea5051e-9569-4299-a71f-58bb078aa662", "name": "Coinify", "icons": [{"id": "4989d350-8033-4ac6-b15f-820f9c9f786f", "name": "Coinify", "type": "dark"}, {"id": "7efb910e-dd11-467c-b99d-ee4febac4d91", "name": "Coinify", "type": "light"}]}]}, {"id": "e0305fa4-281b-4666-8d1c-a3fa80f3c58b", "name": "Repairshopr", "tags": [], "issuers": [], "match_rules": [{"text": "Repairshopr", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Repairshopr", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "10f10ce2-db50-48dc-8121-5733a485fbd3", "name": "Repairshopr", "icons": [{"id": "27ab9367-d693-44bc-8da2-fa0e12a164e8", "name": "Repairshopr", "type": "light"}, {"id": "3d4b19d9-6838-4ade-b8eb-a2cdbae4bc1f", "name": "Repairshopr", "type": "dark"}]}]}, {"id": "e07b39ba-1894-4732-ac6a-cecb71c4001b", "name": "Miro", "tags": [], "issuers": [], "match_rules": [{"text": "Miro", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Miro", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "898aa6d1-7cf1-4c53-8b1b-ba2991fa2e86", "name": "Miro", "icons": [{"id": "cf7f119f-0c37-43d0-bc06-91514b3b7d11", "name": "Miro", "type": "light"}]}]}, {"id": "e085ea95-678d-4b5d-97b4-2b7107567069", "name": "Robinhood", "tags": [], "issuers": ["Robinhood"], "match_rules": [], "icons_collections": [{"id": "6582193f-c4bb-4aa2-b7fe-6efa02bd6995", "name": "Robinhood", "icons": [{"id": "47ac04e8-1771-49da-9c8f-b7b60a7c8980", "name": "Robinhood", "type": "light"}]}]}, {"id": "e0a0a866-8269-4b7e-b659-3758ecd06100", "name": "Apple", "tags": [], "issuers": [], "match_rules": [{"text": "apple", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "90caf674-4269-4193-9749-4849f97cfb53", "name": "Apple", "icons": [{"id": "4bb70c6d-ce78-4580-9aaa-e84b6355fc47", "name": "Apple", "type": "light"}, {"id": "56919108-2ea3-4c16-9ccb-3b196c4d7347", "name": "Apple", "type": "dark"}]}]}, {"id": "e0adc0ea-8017-4fef-bb6c-505969352084", "name": "Valr", "tags": [], "issuers": [], "match_rules": [{"text": "Valr", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Valr", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ba1a9e69-f71f-41da-a843-83ff2b506e4b", "name": "Valr", "icons": [{"id": "c6f49905-cebf-4fa5-a24f-f39d39124a90", "name": "Valr", "type": "light"}]}]}, {"id": "e0d3d638-1fa2-4aa4-8242-4920bd151226", "name": "Blockchain.com", "tags": [], "issuers": ["blockchain.info"], "match_rules": [], "icons_collections": [{"id": "01f35a89-4444-4208-a405-c914340df362", "name": "Blockchain", "icons": [{"id": "f67a5aed-47dc-4487-ab7f-bdc1ffa93ec8", "name": "Blockchain", "type": "light"}]}]}, {"id": "e15848dd-88dc-4b75-9384-29fb97749177", "name": "Krystal", "tags": [], "issuers": [], "match_rules": [{"text": "Krystal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Krystal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cac6a9fb-b018-4f1c-b7d2-8c71013c8433", "name": "Krystal", "icons": [{"id": "34d40a28-2a56-40bc-8662-02817a76bc49", "name": "Krystal", "type": "light"}]}]}, {"id": "e186f845-bec9-498d-9446-bc8987259bfa", "name": "Name.com", "tags": [], "issuers": [], "match_rules": [{"text": "Name.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Name.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "27814220-bd4c-413d-a24c-10ec163a7700", "name": "Name.com", "icons": [{"id": "4b66f0cf-e6a0-43cb-af5b-ec0579fe0936", "name": "Name.com", "type": "light"}]}]}, {"id": "e22669e3-888a-400d-922e-11a9e4ae04c7", "name": "UpCloud", "tags": [], "issuers": [], "match_rules": [{"text": "UpCloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "UpCloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cc7b5194-c464-47a4-8197-d4f67791886d", "name": "UpCloud", "icons": [{"id": "f4b5ab07-86ee-41b1-8868-9c7134854b58", "name": "UpCloud", "type": "light"}]}]}, {"id": "e2d0c20c-ff6c-48ed-bc21-f2d738ac0067", "name": "Hokodo", "tags": [], "issuers": ["Hokodo Dashboard"], "match_rules": null, "icons_collections": [{"id": "9304e41f-b37e-4437-aae9-8cb98cfb1652", "name": "Hokodo", "icons": [{"id": "0f09f4fc-3baf-44bb-8b28-8d2b1fc84603", "name": "Hokodo", "type": "dark"}, {"id": "242ed3d1-ef6e-4ce0-ae09-49b49a8fc439", "name": "Hokodo", "type": "light"}]}]}, {"id": "e30309c0-6975-4af4-9c9d-4b96dbcb4e40", "name": "CoinOne", "tags": [], "issuers": [], "match_rules": [{"text": "CoinOne", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinOne", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6db9522a-35a6-4d18-81a1-1d77081dd511", "name": "CoinOne", "icons": [{"id": "40a2c7f1-fddc-4a6b-8b59-d9179afc05d5", "name": "CoinOne", "type": "light"}]}]}, {"id": "e325587d-695f-49b2-82a3-130e10640db1", "name": "Tumblr", "tags": [], "issuers": ["Tumblr"], "match_rules": [], "icons_collections": [{"id": "7e039b98-b8b9-4a7c-a3f9-2059ab85a9ea", "name": "Tumblr", "icons": [{"id": "d6701bed-a9c5-48eb-acd8-303059858dee", "name": "Tumblr", "type": "light"}]}]}, {"id": "e32cb9ed-f0a0-46e5-8011-0c8d33617adf", "name": "Tebex", "tags": [], "issuers": ["Tebex.io"], "match_rules": [], "icons_collections": [{"id": "29b478a1-d863-42de-ac32-095af746914c", "name": "Tebex.io", "icons": [{"id": "9e6d1f75-c4fc-4f52-bb07-d15bcf319958", "name": "Tebex.io", "type": "light"}]}]}, {"id": "e3522caf-0c43-4efa-adbc-9c75b8e1940f", "name": "Koofr", "tags": [], "issuers": [], "match_rules": [{"text": "Koofr", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Koofr", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f8f2478b-5407-4ce0-9ab7-b2aa0b893bd6", "name": "Koofr", "icons": [{"id": "61b9f690-f8ee-4e8b-8da8-6ea0507735ad", "name": "Koofr", "type": "light"}]}]}, {"id": "e376ec91-99a2-4771-82fa-0dbd72c82a95", "name": "Kintone", "tags": [], "issuers": [], "match_rules": [{"text": "Kintone", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Kintone", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "973d3e29-54b4-487a-8428-ba5d1b1c43c5", "name": "Kintone", "icons": [{"id": "0021d7c2-f6aa-494f-8f3a-317deb919ad9", "name": "Kintone", "type": "light"}]}]}, {"id": "e37e69db-149f-49a8-a769-651a3a2f1f6f", "name": "Purse", "tags": [], "issuers": [], "match_rules": [{"text": "Purse", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Purse", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "53d2fd49-364c-431a-86cf-c729983416a1", "name": "Purse", "icons": [{"id": "1977de4c-5039-4565-b19d-5565054259a8", "name": "Purse", "type": "dark"}, {"id": "28f8e086-5354-4f2e-8b4d-055c21df45c1", "name": "Purse", "type": "light"}]}]}, {"id": "e3a1ee7b-b689-43a7-a88c-de98c793b2a5", "name": "Zapier", "tags": [], "issuers": ["Zapier"], "match_rules": [], "icons_collections": [{"id": "7f76cd41-6022-409a-9253-e399cde29b88", "name": "Zapier", "icons": [{"id": "883ec4e4-12f1-4224-83c5-a3ce76efd710", "name": "Zapier", "type": "light"}]}]}, {"id": "e3c02bbb-3d55-4a37-823e-c4ad929c202e", "name": "Saxo Bank", "tags": [], "issuers": [], "match_rules": [{"text": "Saxo Bank", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Saxo Bank", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "364cacf5-e3f4-4dc3-876e-b6c2802cf099", "name": "Saxo Bank", "icons": [{"id": "27a9194f-95ad-441f-bfb1-f3188517aa9b", "name": "Saxo Bank", "type": "light"}]}]}, {"id": "e3d80b18-b187-40ad-a2ba-d4f35ac84110", "name": "Hint Health", "tags": [], "issuers": [], "match_rules": [{"text": "Hint Health", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hint Health", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cb6128df-3b38-4fb8-9cc6-db94b5326b0b", "name": "Hint Health", "icons": [{"id": "35efaf1f-c243-4ba9-af7f-6190c43274f8", "name": "Hint Health", "type": "light"}]}]}, {"id": "e3e901e5-28dd-4941-8ddf-74c91858c613", "name": "DirectAdmin", "tags": [], "issuers": [], "match_rules": [{"text": "DirectAdmin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DirectAdmin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2c69cc2f-5c82-4609-ad3f-10f87d0d1fe5", "name": "DirectAdmin", "icons": [{"id": "c2ff2bc8-5093-4028-b77b-444c9228b5d8", "name": "DirectAdmin", "type": "light"}]}]}, {"id": "e40761db-a914-447f-a353-a53076734756", "name": "Miss Hosting", "tags": [], "issuers": [], "match_rules": [{"text": "Miss Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Miss Hosting", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0161d30d-5733-446c-9414-04354e868b21", "name": "Miss Hosting", "icons": [{"id": "0c1d293e-ede1-43af-8ccd-f45ea8d38815", "name": "Miss Hosting", "type": "light"}]}]}, {"id": "e4abe02a-d7a1-465f-8974-3bb073bfa5f6", "name": "Runbox", "tags": [], "issuers": [], "match_rules": [{"text": "Runbox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Runbox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6fa97be1-4c36-4ada-8276-814104f743fa", "name": "Runbox", "icons": [{"id": "5b56bae5-1acb-4261-9d49-b530f845bdf3", "name": "Runbox", "type": "dark"}, {"id": "8dad189e-143d-4713-8c90-81f57e6b6119", "name": "Runbox", "type": "light"}]}]}, {"id": "e4c4f37c-866e-4c30-9e02-8213a0aff7bd", "name": "Tutanota", "tags": ["mail", "email", "e-mail"], "issuers": ["Tutanota"], "match_rules": null, "icons_collections": [{"id": "856858a8-25f9-49bf-9ea6-10b07a618d1d", "name": "Tutanota", "icons": [{"id": "064c7fe5-eeb8-4459-9a4b-940b3fbe70da", "name": "Tutanota", "type": "light"}, {"id": "e0936821-f6dc-40e8-af50-fc7d4a5b8f63", "name": "Tutanota", "type": "dark"}]}]}, {"id": "e4c7d1cb-9ae4-4dbc-b258-2fcc033ab5c3", "name": "Replit", "tags": [], "issuers": ["Replit"], "match_rules": null, "icons_collections": [{"id": "a11c8ffa-44b1-47fd-b1b4-043973bd9d4d", "name": "Replit", "icons": [{"id": "d301b80f-3c05-4296-abf2-89250b2e10f4", "name": "Replit", "type": "light"}]}]}, {"id": "e4cd7c6a-570d-495f-aba7-af67bf6363f7", "name": "JumpCloud", "tags": [], "issuers": [], "match_rules": [{"text": "JumpCloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "JumpCloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "552eb7e2-2fb8-4735-a6e3-72fc0015bf14", "name": "JumpCloud", "icons": [{"id": "59935901-2197-473f-a7e6-6718b56f6677", "name": "JumpCloud", "type": "dark"}, {"id": "6243bd2d-cbb6-44db-a0e1-2c34e58d2f59", "name": "JumpCloud", "type": "light"}]}]}, {"id": "e4d9664e-c6b9-42b4-a339-8eec92cbadca", "name": "NameSilo.com", "tags": [], "issuers": [], "match_rules": [{"text": "NameSilo.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NameSilo.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "057319ee-bac5-4382-86b9-7dc4bbad6717", "name": "NameSilo.com", "icons": [{"id": "899ceef5-0fd9-46d3-9ed9-2f0711671cf4", "name": "NameSilo.com", "type": "light"}]}]}, {"id": "e4effd58-8e12-4e34-bb70-7e9d3008aede", "name": "Wikipedia", "tags": [], "issuers": [], "match_rules": [{"text": "Wikipedia", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Wikipedia", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2897c31f-95e3-470b-a5e9-e2bfb1ba5d40", "name": "Wikipedia", "icons": [{"id": "134cbe61-00c5-44ee-80c3-0c525da30434", "name": "Wikipedia", "type": "light"}, {"id": "b32c86b6-adcb-4898-92bc-cbc01692b729", "name": "wikipedia", "type": "dark"}]}]}, {"id": "e51103db-904d-4c32-8295-b4b270eb87c7", "name": "Cliniko", "tags": [], "issuers": [], "match_rules": [{"text": "Cliniko", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cliniko", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2497f9df-245f-48a1-85e2-35b553e3000a", "name": "Cliniko", "icons": [{"id": "32737421-8b09-46bb-8b9d-ee59a2a46f68", "name": "Cliniko", "type": "light"}]}]}, {"id": "e53b287d-7946-462c-926e-e0ace104596f", "name": "Notejoy", "tags": [], "issuers": [], "match_rules": [{"text": "Notejoy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Notejoy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "716b89de-67b1-4b29-8230-da6c03423c98", "name": "Notejoy", "icons": [{"id": "71d8cd51-5dd9-4e19-a847-4aa394b83cb1", "name": "Notejoy", "type": "light"}]}]}, {"id": "e5618b78-9499-4e14-979f-a0765de153f1", "name": "You Need A Budget (YNAB)", "tags": [], "issuers": [], "match_rules": [{"text": "You Need A Budget (YNAB)", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "You Need A Budget (YNAB)", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5373c9ce-da66-4c89-8950-e23c007f5174", "name": "You Need A Budget (YNAB)", "icons": [{"id": "51bb61b7-bc6a-4289-8f5c-302afd683e33", "name": "You Need A Budget (YNAB)", "type": "light"}]}]}, {"id": "e5ae530b-546d-4b49-a1e0-c7701f8a9640", "name": "BlockFi", "tags": [], "issuers": [], "match_rules": [{"text": "BlockFi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BlockFi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b3cfbcfe-51e0-4cd4-a853-44f41bd19d2e", "name": "BlockFi", "icons": [{"id": "f5485b42-3dee-495a-ae5a-6ea68109d5e0", "name": "BlockFi", "type": "light"}]}]}, {"id": "e5c0b179-b918-48bf-a946-cb362c7abb68", "name": "Kinsta", "tags": [], "issuers": [], "match_rules": [{"text": "Kinsta", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Kinsta", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9d02a9b4-661d-483b-8a62-3b110ec0000a", "name": "Kinsta", "icons": [{"id": "ab5d686f-4abf-4144-9e7e-dca78dc314e9", "name": "Kinsta", "type": "light"}, {"id": "faecd61a-f735-44c1-9955-f7784cd438dc", "name": "Kinsta", "type": "dark"}]}]}, {"id": "e5dee7b9-c921-41ed-8b24-e74c6b72daa8", "name": "Square Enix", "tags": [], "issuers": ["Square Enix ID"], "match_rules": [], "icons_collections": [{"id": "02b0a535-36c4-46d3-9273-22dbf5236ce8", "name": "Square Enix", "icons": [{"id": "774a16cb-1896-4cb4-85ce-cd5e779e7712", "name": "Square Enix", "type": "light"}, {"id": "a91ec006-271a-4c65-ad6e-6a9a4a322ae7", "name": "Square Enix", "type": "dark"}]}]}, {"id": "e6855fef-9e6f-4636-93d6-ecfec445350a", "name": "Sendinblue", "tags": [], "issuers": [], "match_rules": [{"text": "Sendinblue", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sendinblue", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0054814b-7f9e-42fe-8b02-1576e5d255f6", "name": "Sendinblue", "icons": [{"id": "a69048d1-53c2-41fa-a90a-71d44e262251", "name": "Sendinblue", "type": "light"}]}]}, {"id": "e6c6261f-da7f-4f2f-a34a-65bbff91611f", "name": "Timetastic", "tags": [], "issuers": [], "match_rules": [{"text": "Timetastic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Timetastic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a552bbe1-90c1-4335-9ca9-7090176cc3ac", "name": "Timetastic", "icons": [{"id": "ab30ea5c-706b-4842-b14b-22361013e630", "name": "Timetastic", "type": "light"}]}]}, {"id": "e6caba64-cf95-4edd-a53c-9c9549672d3b", "name": "Mercury Cash", "tags": [], "issuers": [], "match_rules": [{"text": "Mercury Cash", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mercury Cash", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "89676e6d-042e-4f38-b2a3-40a94491fce0", "name": "Mercury Cash", "icons": [{"id": "2701ae60-cfc3-4724-b475-30d37cf109b5", "name": "Mercury Cash", "type": "light"}]}]}, {"id": "e6ccc0e1-82c7-424f-b8ba-31c779c8e530", "name": "CloudBees", "tags": [], "issuers": [], "match_rules": [{"text": "CloudBees", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CloudBees", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f1d88646-6683-4610-a316-de6490a70511", "name": "CloudBees", "icons": [{"id": "8a8e486a-f928-43f5-9274-9b7f105f4a0d", "name": "CloudBees", "type": "light"}]}]}, {"id": "e6f9b440-edea-4d3e-ad2f-0e2c4fe7161a", "name": "Smarkets", "tags": [], "issuers": [], "match_rules": [{"text": "Smarkets", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Smarkets", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "08e2f10e-75f5-4a18-8c73-401f02084369", "name": "Smarkets", "icons": [{"id": "3be7945a-0f6c-473f-a76a-31f4171819ff", "name": "Smarkets", "type": "dark"}, {"id": "53816f0c-12bb-4e8d-9c6c-821499a440ed", "name": "Smarkets", "type": "light"}]}]}, {"id": "e709dc4b-2a72-4f6f-9c8a-6b3dbebc42e5", "name": "BeamPro", "tags": [], "issuers": ["Beam"], "match_rules": [], "icons_collections": [{"id": "83bfbbc9-3399-4556-8724-3fd1ea46b97a", "name": "BeamPro", "icons": [{"id": "e68a7262-daf1-4a7c-bb24-255553195f5c", "name": "BeamPro", "type": "light"}]}]}, {"id": "e766b17d-8513-4b4c-9cd6-b7765ef4acc7", "name": "CoinLoan", "tags": [], "issuers": [], "match_rules": [{"text": "CoinLoan", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinLoan", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "84b89b07-8f9b-456a-ab4a-c15f75c96a59", "name": "CoinLoan", "icons": [{"id": "961a11f0-a95b-4cb1-83d4-66ad0bee9790", "name": "CoinLoan", "type": "light"}]}]}, {"id": "e7672f3f-2760-47a9-b0a0-516b8d59695d", "name": "University of Delaware", "tags": [], "issuers": [], "match_rules": [{"text": "University of Delaware", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Delaware", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2cf4fda0-548d-4dfb-9afb-4d76a46da81d", "name": "University of Delaware", "icons": [{"id": "bb9e9419-aa8c-48a1-90c2-3abfd2db5c0f", "name": "University of Delaware", "type": "light"}]}]}, {"id": "e788f163-f596-4252-8748-480d19b57871", "name": "easyDNS", "tags": [], "issuers": [], "match_rules": [{"text": "easyDNS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "easyDNS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4a4886d3-c503-4de7-9f2c-f6f845eaabb0", "name": "easyDNS", "icons": [{"id": "16b52a19-772d-4f94-b48f-a2325e9993ec", "name": "easyDNS", "type": "light"}]}]}, {"id": "e7d3967d-7f1a-47db-9e7c-7aeafe0731f1", "name": "Rollbar", "tags": [], "issuers": [], "match_rules": [{"text": "Rollbar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rollbar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c38e5c0f-782d-4ada-85b2-d801fd4e1f6f", "name": "Rollbar", "icons": [{"id": "8fbfa536-cd15-4d85-9975-40be7a014cdc", "name": "Rollbar", "type": "light"}]}]}, {"id": "e82b02e9-84bb-4af3-b66e-09928da55945", "name": "Liquid Web", "tags": [], "issuers": [], "match_rules": [{"text": "Liquid Web", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Liquid Web", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "02a52d7a-b885-4826-8f86-0801f768f58f", "name": "Liquid Web", "icons": [{"id": "c0abd638-300b-4f32-b596-1dbca603f90e", "name": "Liquid Web", "type": "light"}]}]}, {"id": "e840c397-bbc5-42e1-8d35-e9ee78f919e8", "name": "Mail.com", "tags": [], "issuers": ["Mail.com"], "match_rules": [{"text": "Mail.com", "field": "issuer", "matcher": "starts_with", "ignore_case": true}, {"text": "Mail.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "814849a3-c6da-49ac-b53b-d64c3ba80d92", "name": "Mail.com", "icons": [{"id": "d03c1ece-a9f9-408b-bb5b-e12d571ef252", "name": "Mail.com", "type": "light"}]}]}, {"id": "e8622066-1148-45ab-8c89-bb81432119a2", "name": "Jovia Financial", "tags": [], "issuers": [], "match_rules": [{"text": "Jovia Financial", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Jovia Financial", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f162831a-4f49-4512-8deb-06456ec4e123", "name": "Jovia Financial", "icons": [{"id": "b1d2d5fa-eb03-47cf-9a5c-936a19dab806", "name": "Jovia Financial", "type": "light"}]}]}, {"id": "e8937e59-d7df-4020-a345-0b2b638805c3", "name": "BullionVault", "tags": [], "issuers": [], "match_rules": [{"text": "BullionVault", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BullionVault", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "95d2ec85-accb-46c6-b71d-1b0b38b51d8e", "name": "BullionVault", "icons": [{"id": "c0465f36-19ce-4a96-8ee6-b76544f5740c", "name": "BullionVault", "type": "light"}]}]}, {"id": "e899321b-2aa9-44c6-b619-5aacb7955954", "name": "CoinList", "tags": [], "issuers": ["CoinList"], "match_rules": [], "icons_collections": [{"id": "d5caa96f-fc26-4b31-94e7-49a17de8080e", "name": "CoinList", "icons": [{"id": "57d3ea0a-967a-4b35-99f1-996e1f6ab611", "name": "CoinList", "type": "light"}]}]}, {"id": "e8a2c1f2-fc4a-4df2-8076-99575cc27efb", "name": "\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 (Gosuslugi)", "tags": [], "issuers": [], "match_rules": [{"text": "\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 (Gosuslugi)", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 (Gosuslugi)", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "04529752-ef96-4d58-85d7-aa610d99db86", "name": "\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 (Gosuslugi)", "icons": [{"id": "d952d7d4-89cf-4be8-950a-3c31a1c648b0", "name": "\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 (Gosuslugi)", "type": "light"}]}]}, {"id": "e8cf90a1-736d-457a-8e28-8253d1e4a373", "name": "Raindrop.io", "tags": [], "issuers": ["Raindrop.io"], "match_rules": null, "icons_collections": [{"id": "3d72fa6a-5683-47b1-83d9-33abfa842ac7", "name": "Raindrop.io", "icons": [{"id": "ed5e7a91-a56c-403a-9c3c-cf785fba0f60", "name": "Raindrop.io", "type": "light"}]}]}, {"id": "e8ee95b5-5db9-4c41-a97e-0c6c272e1f47", "name": "E.ON", "tags": [], "issuers": [], "match_rules": [{"text": "E.ON", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "E.ON", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "74ccbab4-9ed1-49c4-a3cc-491895eebbeb", "name": "E.ON", "icons": [{"id": "0036e875-a152-440a-859e-7b0892b7fa80", "name": "E.ON", "type": "light"}]}]}, {"id": "e8fe47dd-95b6-4ab9-b3fc-2f82aa8e8a89", "name": "Luno", "tags": [], "issuers": [], "match_rules": [{"text": "Luno", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Luno", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "851a231d-64e9-4e4d-a05d-1c219e5b3f27", "name": "Luno", "icons": [{"id": "c0f59bb3-ca3e-4717-8088-6ed743a3c5ee", "name": "Luno", "type": "light"}]}]}, {"id": "e9224ec7-0efb-431f-8362-c6569a91268d", "name": "Cryptowatch", "tags": [], "issuers": [], "match_rules": [{"text": "Cryptowatch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cryptowatch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b7ad8da7-440b-4bc8-b31e-da69436d1969", "name": "Cryptowatch", "icons": [{"id": "0d9fdf70-5d73-4b19-8567-4ef6fb56bbee", "name": "Cryptowatch1", "type": "light"}]}]}, {"id": "e9ba90a2-6ddf-458e-a9d7-d1f13b0fd3a0", "name": "Meister", "tags": [], "issuers": [], "match_rules": [{"text": "Meister", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Meister", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ff9e3674-b477-4cd6-9115-c08a119e0c0f", "name": "Meister", "icons": [{"id": "f8ba7121-bd31-4a83-92a3-e69be5d033e6", "name": "Meister", "type": "light"}]}]}, {"id": "e9c7e9ba-2269-42f2-a532-7d3ecbc34289", "name": "mailbox.org", "tags": [], "issuers": [], "match_rules": [{"text": "mailbox.org", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "mailbox.org", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db778165-44f2-4aea-a111-1f439b6f9d47", "name": "mailbox.org", "icons": [{"id": "fd8fee5b-7c90-4d9c-9e55-fe14d14cc34a", "name": "mailbox.org", "type": "light"}]}]}, {"id": "ea4394e0-779f-49fc-a6d5-17e7212bda51", "name": "Make", "tags": [], "issuers": [], "match_rules": [{"text": "Make", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Make", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "71c2b71e-df19-4911-8154-af4e9a478fbd", "name": "Make", "icons": [{"id": "5dff3c25-3318-4e19-aa53-6659e61ef44e", "name": "Make", "type": "light"}]}]}, {"id": "ea543918-c254-443b-9cca-33db8aa1a21d", "name": "TrendMicro", "tags": [], "issuers": ["Trend Micro"], "match_rules": [], "icons_collections": [{"id": "0a26cdeb-a53b-411c-bbcd-48d73f70d3cf", "name": "TrendMicro", "icons": [{"id": "42f2413e-902a-4af4-919f-e91c167ca66f", "name": "TrendMicro", "type": "light"}]}]}, {"id": "ea7cd947-35fb-4e7a-b639-06ba51be2a0c", "name": "SendSafely", "tags": [], "issuers": [], "match_rules": [{"text": "SendSafely", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SendSafely", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bd5c9789-92bf-4741-b706-057ed51c85ce", "name": "SendSafely", "icons": [{"id": "e1ba5881-2987-49c9-9203-1cc00a52b6bc", "name": "SendSafely", "type": "light"}]}]}, {"id": "ea9a36fc-711d-48d7-9b51-0e4bdfd7a00d", "name": "Coins.ph", "tags": [], "issuers": [], "match_rules": [{"text": "Coins.ph", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coins.ph", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1e740253-0b33-4feb-a825-c4387dcc41d4", "name": "Coins.ph", "icons": [{"id": "0b8032fe-b6d7-456d-8d0d-383577c7a1fa", "name": "Coins.ph", "type": "light"}]}]}, {"id": "eb406cfb-bc68-4efc-947c-976771f5377f", "name": "Pivotal Tracker", "tags": [], "issuers": [], "match_rules": [{"text": "Pivotal Tracker", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pivotal Tracker", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8b4fbc8d-5b1b-4359-9c57-2c33a315cbcf", "name": "Pivotal Tracker", "icons": [{"id": "c233dcf7-92c9-40e6-9be1-da959f503820", "name": "Pivotal Tracker", "type": "light"}]}]}, {"id": "eb535c31-b47c-4a6d-9b7c-45b7716e1447", "name": "YouHodler", "tags": [], "issuers": [], "match_rules": [{"text": "YouHodler", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "YouHodler", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "98d4685a-4e7c-465d-930e-5b11ccfbe944", "name": "YouHodler", "icons": [{"id": "f228d616-30fd-4904-801f-e7b4a262086b", "name": "YouHodler", "type": "light"}]}]}, {"id": "eb82164f-aa83-44af-a943-387a0bb19c08", "name": "CoinSpot", "tags": [], "issuers": [], "match_rules": [{"text": "CoinSpot", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f94290c5-970e-483b-9a7d-f4fe02706fd8", "name": "CoinSpot", "icons": [{"id": "1529af27-16b0-4b84-99b0-36fe5cb86b1b", "name": "CoinSpot", "type": "light"}]}]}, {"id": "eb93e63c-bab4-4e1e-8cff-916a33ba760a", "name": "Fintegri", "tags": [], "issuers": ["Fintegri"], "match_rules": [], "icons_collections": [{"id": "ffad6e64-14f5-4b1f-b2aa-41232a4eedf4", "name": "Fintegri", "icons": [{"id": "4ff527ac-78f6-4218-9e79-0796848afc3a", "name": "Fintegri", "type": "light"}]}]}, {"id": "ebb4d08f-4a28-4db8-8395-a929b9e449a7", "name": "Amazon Pay", "tags": [], "issuers": [], "match_rules": [{"text": "amazon pay", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "amazon pay", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "amazon+pay", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "amazon+pay", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b756b32-40d3-4ae0-b8f8-1b81308dbeaf", "name": "Amazon Pay", "icons": [{"id": "36a8a180-e488-409f-ab86-fea759a25b93", "name": "Amazon Pay", "type": "dark"}, {"id": "e1168770-7673-420a-ab58-3e4a5ccccd02", "name": "Amazon Pay", "type": "light"}]}]}, {"id": "ebe7dc06-c1d9-45ad-9bb2-16c7e1685c6d", "name": "Stackfield", "tags": [], "issuers": [], "match_rules": [{"text": "Stackfield", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Stackfield", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "98e17353-a3a1-42c1-b02c-ab168825ad69", "name": "Stackfield", "icons": [{"id": "14ea97e5-6a2d-4f6f-9163-f7534699e485", "name": "Stackfield", "type": "light"}]}]}, {"id": "ec0d13e2-3479-49fb-aeaa-67dab162cadd", "name": "LastPass", "tags": [], "issuers": ["LastPass"], "match_rules": [], "icons_collections": [{"id": "7d4e81cd-ec45-491d-be61-18c0652fcf8b", "name": "LastPass", "icons": [{"id": "0cd2ec42-409a-4b27-8bdc-193b876c7435", "name": "LastPass", "type": "dark"}, {"id": "de6c9163-ab17-412e-a8a3-211c282417bf", "name": "LastPass", "type": "light"}]}]}, {"id": "ec1393a0-9205-4706-ad58-193cf8c2fbc1", "name": "HackerOne", "tags": [], "issuers": [], "match_rules": [{"text": "HackerOne", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HackerOne", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ec0cf3cf-54aa-47f0-add2-16602d1d2d89", "name": "HackerOne", "icons": [{"id": "badc429f-4629-43ed-a2a4-58198698f185", "name": "HackerOne", "type": "light"}, {"id": "f6eb4f87-dfa9-497d-bc08-57377fe43777", "name": "HackerOne", "type": "dark"}]}]}, {"id": "ec30202b-98d9-440f-b376-1635efd8a67f", "name": "RunCloud", "tags": [], "issuers": ["RunCloud"], "match_rules": null, "icons_collections": [{"id": "96b293b5-f4ee-4201-93a5-81c0b73581bf", "name": "RunCloud", "icons": [{"id": "ec5f581d-82a7-406a-9363-34a8b4bf3b5e", "name": "RunCloud", "type": "light"}, {"id": "fee0fbd2-e23a-45d3-87c4-fd17afafc543", "name": "RunCloud", "type": "dark"}]}]}, {"id": "ecbfa345-a65a-4516-8a8a-747a12703b7f", "name": "ALL-INKL.COM", "tags": [], "issuers": [], "match_rules": [{"text": "all-inkl", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "all-inkl", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b34a23f8-accc-43d6-8267-77b3f86c2b60", "name": "ALL-INKL.COM", "icons": [{"id": "4cd5eb8e-1e5c-40ab-8f44-217485b225e1", "name": "ALL-INKL.COM", "type": "light"}]}]}, {"id": "ecf415c1-db26-43f9-a4df-bbbacbf1ae96", "name": "Xplenty", "tags": [], "issuers": [], "match_rules": [{"text": "Xplenty", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Xplenty", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b2cbfe4-1a82-46e0-9895-73418ea33562", "name": "Xplenty", "icons": [{"id": "a4b3dbbd-5dd6-4d65-ad24-dfc891098ff2", "name": "Xplenty", "type": "light"}]}]}, {"id": "ed5653f7-109f-4585-b60d-90f8702dfdfa", "name": "Hushmail", "tags": [], "issuers": [], "match_rules": [{"text": "Hushmail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hushmail", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e4a960d1-971e-4330-be1d-e6f9247941bc", "name": "Hushmail", "icons": [{"id": "0373749e-897d-4049-a89c-4482a84fbac3", "name": "Hushmail", "type": "dark"}, {"id": "20c1cdaa-a6ee-4e64-935d-122a446391f2", "name": "Hushmail", "type": "light"}]}]}, {"id": "ed5d852e-e2e5-4c96-b640-7fbbfb4165b0", "name": "Passwarden", "tags": [], "issuers": [], "match_rules": [{"text": "Passwarden", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Passwarden", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c26b2c77-4015-4ab1-a796-c3d99fbdbab9", "name": "Passwarden", "icons": [{"id": "01d407e7-f8f3-4f62-a326-28d6b7b09baa", "name": "Passwarden", "type": "light"}]}]}, {"id": "ed64d5af-2641-465f-9936-4c5bc6075695", "name": "Plex", "tags": [], "issuers": ["Plex"], "match_rules": [], "icons_collections": [{"id": "a29152d6-0ac4-41c6-8ce8-a84c4d87ebef", "name": "Plex", "icons": [{"id": "2b72103a-751d-4363-a436-587acb2a7f77", "name": "Plex", "type": "dark"}, {"id": "8237f747-692a-4254-9031-f297e958b74b", "name": "Plex", "type": "light"}]}]}, {"id": "edab0398-76da-4b1f-b71c-751a20209fa9", "name": "Brick Hill", "tags": [], "issuers": [], "match_rules": [{"text": "BrickHill", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BrickHill", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Brick Hill", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Brick Hill", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "13b54ba3-33ff-454f-8cda-e538ebbec5b5", "name": "Brick Hill", "icons": [{"id": "0e222258-ee92-4a72-ad8a-4bf2958a92ff", "name": "Brick Hill", "type": "light"}]}]}, {"id": "edf4885f-6c13-4c3d-8aa8-378f9177879d", "name": "MEGA", "tags": [], "issuers": ["MEGA"], "match_rules": [], "icons_collections": [{"id": "2fa5a5bd-ff1b-41da-9109-25f9ea49f56f", "name": "MEGA", "icons": [{"id": "237924f1-5e9b-453e-81be-ab38e14a2c95", "name": "MEGA", "type": "light"}]}]}, {"id": "edf70ad0-18f6-4b38-871a-b128bea8b725", "name": "East Carolina University", "tags": ["eca"], "issuers": [], "match_rules": [{"text": "East Carolina University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "East Carolina University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d59f32d3-7ba3-4d92-8566-a81285f1aed2", "name": "East Carolina University", "icons": [{"id": "3f592182-ad10-4272-8f32-2b9726471283", "name": "East Carolina University", "type": "dark"}, {"id": "a3ab004b-631a-4c86-a63a-3acb463a78c5", "name": "East Carolina University", "type": "light"}]}]}, {"id": "ee0b83ee-3920-43fa-83fd-6dbe88c5578d", "name": "Server.pro", "tags": [], "issuers": [], "match_rules": [{"text": "Server.pro", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Server.pro", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eda4a2e6-f39f-4afd-bc0a-4b5cd974c447", "name": "Server.pro", "icons": [{"id": "a618159a-1756-4733-b173-88f0020036d8", "name": "Server.pro", "type": "light"}]}]}, {"id": "ee369040-4ac2-4ceb-9569-1b1c65288a8b", "name": "GoDaddy", "tags": [], "issuers": [], "match_rules": [{"text": "GoDaddy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "51c99cc4-9c19-4d9d-8ccb-41c630f5e977", "name": "GoDaddy", "icons": [{"id": "3438a65b-25c3-489a-9a8b-96bce6f2306c", "name": "GoDaddy", "type": "light"}]}]}, {"id": "ee576944-e5f6-4ad1-8840-6c7ad8eb4715", "name": "3Commas", "tags": [], "issuers": ["3Commas"], "match_rules": null, "icons_collections": [{"id": "8541f4d5-513f-46e8-bc90-cc13f0764381", "name": "3Commas", "icons": [{"id": "75d3dd39-534f-4875-98fe-3bfdb5a5ea16", "name": "3commas", "type": "light"}]}]}, {"id": "ee678254-fb1e-40ce-9958-862887841a06", "name": "Scripting Helpers", "tags": [], "issuers": [], "match_rules": [{"text": "Scripting Helpers", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Scripting Helpers", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "917db66b-9fdf-46d6-a43a-0617be21c2f5", "name": "Scripting Helpers", "icons": [{"id": "e07bfc08-e279-429a-b927-54437beaa1db", "name": "Scripting Helpers", "type": "light"}]}]}, {"id": "ee8b898b-f406-4de9-93b6-a9217fa48481", "name": "Stiftung Warentest", "tags": [], "issuers": [], "match_rules": [{"text": "Stiftung Warentest", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Stiftung Warentest", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "63243b77-816b-4f1c-9ccd-092962f2235d", "name": "Stiftung Warentest", "icons": [{"id": "8caefdae-17d5-4af4-9ffa-edfd2027b96a", "name": "Stiftung Warentest", "type": "light"}]}]}, {"id": "ee990e63-4e8d-4aa5-be25-fd945108aaac", "name": "Etsy", "tags": [], "issuers": ["Etsy"], "match_rules": [], "icons_collections": [{"id": "3d19f274-79d5-450e-9885-e71129cb640e", "name": "Etsy", "icons": [{"id": "c5a4063d-86b8-46d7-a189-37c930150950", "name": "Etsy", "type": "light"}]}]}, {"id": "eed0167a-c72d-4a0f-80c1-5ff560b513cf", "name": "Gitea", "tags": [], "issuers": ["Gitea"], "match_rules": [], "icons_collections": [{"id": "1b4d77ed-6dc8-48ec-8382-161f2a1eaf00", "name": "Gitea", "icons": [{"id": "ab71e699-20e8-497c-a820-0551a08f092f", "name": "Gitea", "type": "light"}]}]}, {"id": "ef153134-36a5-4550-97a0-65f13790359c", "name": "Checkfront", "tags": [], "issuers": [], "match_rules": [{"text": "Checkfront", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Checkfront", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9116d5fb-116d-464a-b0c5-730ffdd81473", "name": "Checkfront", "icons": [{"id": "1b075ded-d169-494f-880f-c5dcf66bb868", "name": "Checkfront", "type": "light"}]}]}, {"id": "ef56a8ce-ae58-4327-befe-060e010bebb5", "name": "Prostocash", "tags": [], "issuers": [], "match_rules": [{"text": "Prostocash", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Prostocash", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "55e850b1-8b39-47c2-8a99-dd0e28a3e8ab", "name": "Prostocash", "icons": [{"id": "fde6cb0e-a16d-4b14-8636-93f34bbe2913", "name": "Prostocash", "type": "light"}]}]}, {"id": "ef68a01c-9118-429b-a68f-f483a749a61d", "name": "Rejoiner", "tags": [], "issuers": [], "match_rules": [{"text": "Rejoiner", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rejoiner", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4ab958d7-18ba-47f2-a0d3-db8bf65f0816", "name": "Rejoiner", "icons": [{"id": "1246301f-5ee6-461e-8021-8d981c8f1124", "name": "Rejoiner", "type": "light"}]}]}, {"id": "efe98f26-b2d7-49e3-809e-a8aae8c913b5", "name": "Technische Universit\u00e4t Berlin", "tags": [], "issuers": [], "match_rules": [{"text": "Technische Universit\u00e4t Berlin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Technische Universit\u00e4t Berlin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "242322c6-dbb8-40f1-b83e-fa926f4ab4d0", "name": "Technische Universit\u00e4t Berlin", "icons": [{"id": "60815e57-2990-42d9-9915-af97f97e4db2", "name": "Technische Universit\u00e4t Berlin", "type": "light"}]}]}, {"id": "f002abd0-fb0b-412d-a8a2-aa072e295f88", "name": "Tessian", "tags": [], "issuers": [], "match_rules": [{"text": "Tessian", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tessian", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d42bba17-706f-4179-8d4c-c8506a1be809", "name": "Tessian", "icons": [{"id": "a85edeed-3741-44f0-9b80-bb7db0ba3e08", "name": "Tessian", "type": "light"}]}]}, {"id": "f014153d-c667-4add-a05d-c3fa6d6e9561", "name": "American Century Investments", "tags": [], "issuers": [], "match_rules": [{"text": "American Century Investments", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "American Century Investments", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e43cfe9c-4875-4c29-8ee4-f0efbcd0fefc", "name": "American Century Investments", "icons": [{"id": "4cfd0674-7d3b-4949-8c70-f46195f848b1", "name": "American Century Investments", "type": "light"}]}]}, {"id": "f028ce41-346f-48a4-b83c-50a51f2d701e", "name": "Choice", "tags": [], "issuers": ["Choice By Kingdom Trust"], "match_rules": [], "icons_collections": [{"id": "a85b05bc-2a16-4c57-8a08-17e6c7dbc5f4", "name": "Choice", "icons": [{"id": "90550d62-7e80-45ae-8b35-5ce88c3cbc96", "name": "Choice", "type": "light"}, {"id": "c20367ae-34a4-429a-8959-f938a2e73a55", "name": "Choice", "type": "dark"}]}]}, {"id": "f029f72c-0b3d-4a20-8be7-1e6654a205d5", "name": "ISACA", "tags": [], "issuers": [], "match_rules": [{"text": "ISACA", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ISACA", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3be403fb-8f08-44d9-af95-0947a594526b", "name": "ISACA", "icons": [{"id": "619b5a5d-86ae-489b-bf32-532c9d14126e", "name": "ISACA", "type": "light"}, {"id": "649b34db-7304-47e7-afbd-193ccedac155", "name": "ISACA", "type": "dark"}]}]}, {"id": "f0b52bd0-9d8d-43d1-954d-95e8950d607e", "name": "Cryptonator", "tags": [], "issuers": [], "match_rules": [{"text": "Cryptonator", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cryptonator", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f77608c2-c56e-4fe8-aadc-5d088b7f2465", "name": "Cryptonator", "icons": [{"id": "d13650b8-a005-4f66-9a20-0e0c2db47395", "name": "Cryptonator", "type": "light"}]}]}, {"id": "f0dd74a7-28fb-4c77-9541-3d2a2df53268", "name": "TradingView", "tags": [], "issuers": ["TradingView"], "match_rules": [], "icons_collections": [{"id": "a0dd2706-8912-4e35-bf7d-8a31b310b323", "name": "TradingView", "icons": [{"id": "461627c7-a4a9-469a-997e-7e4d7700bd1c", "name": "TradingView", "type": "light"}, {"id": "cbcd3778-2089-4e09-adea-770846d6bef4", "name": "TradingView", "type": "dark"}]}]}, {"id": "f0f1b8da-8838-4629-962c-9e4eee5fec58", "name": "Hevo Data", "tags": [], "issuers": [], "match_rules": [{"text": "Hevo Data", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hevo Data", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "03e9ff66-a96d-4413-a12a-667b8a9caade", "name": "Hevo Data", "icons": [{"id": "404f500c-97d0-4fd1-8d7f-643276475317", "name": "Hevo Data", "type": "light"}]}]}, {"id": "f118573d-40e8-46f1-a96f-3f1439fadcd4", "name": "AltoIRA", "tags": [], "issuers": [], "match_rules": [{"text": "AltoIRA", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AltoIRA", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ddb9c0a0-0692-4baa-bb39-7f80e06f7e66", "name": "AltoIRA", "icons": [{"id": "49a3cd7b-6e26-4608-b60f-94e76e3804bf", "name": "AltoIRA", "type": "light"}]}]}, {"id": "f13f2163-b024-4db7-baaa-8d33e60dd654", "name": "Vivup Benefits", "tags": [], "issuers": [], "match_rules": [{"text": "Vivup Benefits", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Vivup Benefits", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fc96cc55-0de6-449c-b840-2b145399b581", "name": "Vivup Benefits", "icons": [{"id": "5a5e76fc-c7e4-472d-b4f7-1bddee114ca5", "name": "Vivup Benefits", "type": "light"}]}]}, {"id": "f15d2255-4bcd-4943-a0ae-705d96df97ee", "name": "Credly", "tags": [], "issuers": [], "match_rules": [{"text": "Credly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Credly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aa1a5c28-f93d-4a61-b0d1-94a412860491", "name": "Credly", "icons": [{"id": "2e90b63c-47a5-4532-a926-3f281f0f0d28", "name": "Credly", "type": "light"}]}]}, {"id": "f17edf5d-bd7f-4ecc-8445-efec4e9e7593", "name": "Mintos", "tags": [], "issuers": [], "match_rules": [{"text": "Mintos", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mintos", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0d3e1d87-06ab-4e79-8cf5-a08c7940a5b1", "name": "Mintos", "icons": [{"id": "3d4ed967-8b43-4b5a-9f43-219708f28a17", "name": "Mintos", "type": "light"}]}]}, {"id": "f1c77692-9282-495d-913a-ef5c5996ae44", "name": "WireGuard", "tags": [], "issuers": [], "match_rules": [{"text": "wireguard.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "bb9da84a-2b56-4160-b2ac-cef537a20e4f", "name": "WireGuard", "icons": [{"id": "3631ce58-59a5-4a24-978c-1f34cb26dcc7", "name": "WireGuard", "type": "light"}]}]}, {"id": "f1f33335-c739-48ee-8205-4b5bd2d37162", "name": "Kerio", "tags": [], "issuers": ["kerio"], "match_rules": null, "icons_collections": [{"id": "f49efc49-cc3a-4ccd-b796-e4cf38e0174f", "name": "Kerio", "icons": [{"id": "9ef5a5fa-9539-4be1-a540-61cc65a38614", "name": "Kerio", "type": "dark"}, {"id": "fbb33a2b-a9fe-4863-9e8b-2ae387920129", "name": "Kerio", "type": "light"}]}]}, {"id": "f2425ecc-f42a-4f0f-8d39-254fc7ae35ba", "name": "Namecheap", "tags": [], "issuers": ["Namecheap"], "match_rules": [], "icons_collections": [{"id": "5c80186d-e0ed-4d34-b27d-71ba52e897cf", "name": "Namecheap", "icons": [{"id": "8a1ee3db-e42c-4c5f-b7c6-7aa85fe8f800", "name": "Namecheap", "type": "light"}]}]}, {"id": "f27af1a5-53fc-44ce-80ea-8fa8c9ca04bc", "name": "F-Secure", "tags": [], "issuers": ["F-Secure"], "match_rules": [], "icons_collections": [{"id": "758f71eb-25e7-49e3-8a83-f39a7c24dcd7", "name": "F-Secure", "icons": [{"id": "1025f4c6-cab2-49c8-956a-40d7b2cd9071", "name": "F-Secure", "type": "light"}, {"id": "13e5f358-df76-46ad-8e4c-368a83698d9f", "name": "F-Secure", "type": "dark"}]}]}, {"id": "f2beee5d-1df3-4a57-ad58-0417dbea3725", "name": "Meta", "tags": ["oculus"], "issuers": ["Meta"], "match_rules": null, "icons_collections": [{"id": "7d7c381b-7feb-4155-991f-074ae53e6bd9", "name": "Meta", "icons": [{"id": "374b5fbc-15f0-45c0-9a47-857f7443bb05", "name": "Meta Oculus", "type": "light"}]}]}, {"id": "f2c3bf6c-3130-4145-811e-ca864b52b129", "name": "Matrixport", "tags": [], "issuers": ["Matrixport"], "match_rules": null, "icons_collections": [{"id": "886b383c-a02a-4566-a618-a0fc0a9e9cd1", "name": "Matrixport", "icons": [{"id": "54b968d4-f6c7-4103-badc-6d2069416f7c", "name": "Matrixport", "type": "dark"}, {"id": "c889935d-01fe-4e4c-a667-7a38b63a6de1", "name": "Matrixport", "type": "light"}]}]}, {"id": "f2d06792-362b-4fd6-85fb-5144757a8f40", "name": "MyHeritage", "tags": ["heritage"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "ef5b7df4-55d3-49ca-9ec0-93d380302884", "name": "MyHeritage", "icons": [{"id": "ebd92db2-33cf-42f9-8bdb-d9d32b9a2261", "name": "MyHeritage", "type": "light"}]}]}, {"id": "f3379d7d-69ed-4970-9b18-f293b993b829", "name": "Hack The Box", "tags": [], "issuers": ["Hack The Box"], "match_rules": [], "icons_collections": [{"id": "78506e72-bbbb-462a-9c04-6b8ac4ee4a7f", "name": "Hack The Box", "icons": [{"id": "20537ec5-feb1-4f65-a5b4-78c392528787", "name": "Hack The Box", "type": "light"}]}]}, {"id": "f371af0d-6559-4bda-9dc9-e0c49fe90f82", "name": "Current RMS", "tags": [], "issuers": [], "match_rules": [{"text": "Current RMS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Current RMS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e4b3a960-9742-4151-87ac-d8485f0c5044", "name": "Current RMS", "icons": [{"id": "4b317d12-002a-4900-800a-5b0819c170de", "name": "Current RMS", "type": "light"}]}]}, {"id": "f3ba89b1-68a6-4ad9-bbc4-8555176c98b7", "name": "Mimecast", "tags": [], "issuers": [], "match_rules": [{"text": "Mimecast", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mimecast", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "005eb58c-4a8f-4f81-936f-dc5543c4e96d", "name": "Mimecast", "icons": [{"id": "dd2e25f3-5dc7-45e4-8a0a-85bc69d55f66", "name": "Mimecast", "type": "light"}]}]}, {"id": "f3d3486c-ab83-434c-8304-88a7a00e31cb", "name": "Freshworks", "tags": [], "issuers": [], "match_rules": [{"text": "Freshworks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Freshworks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f4f8df6d-5ed7-49fa-9e82-59df822f05f7", "name": "Freshworks", "icons": [{"id": "d1421216-a585-49b8-ae61-5c097ab110fb", "name": "Freshworks", "type": "light"}]}]}, {"id": "f3dae646-0cfa-467d-9ecc-06790e1aa6d2", "name": "Samsung", "tags": [], "issuers": [], "match_rules": [], "icons_collections": [{"id": "6ffeb8a0-4031-482a-8e00-83262509c864", "name": "Samsung", "icons": [{"id": "74678e8e-f8e3-431d-8ab5-f99d5efe76a9", "name": "Samsung", "type": "light"}, {"id": "d9b0dce9-df67-4d68-993a-e03ddcd45191", "name": "Samsung", "type": "dark"}]}]}, {"id": "f3dc384d-ced9-49ba-be8a-bdf774a4fde2", "name": "Scaleway", "tags": [], "issuers": [], "match_rules": [{"text": "Scaleway", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Scaleway", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dd09ae88-eefa-46f6-935f-ff4154b8d745", "name": "Scaleway", "icons": [{"id": "3f1aad59-be39-41b0-8126-1de14b48538b", "name": "Scaleway", "type": "dark"}, {"id": "c6dfe675-5e75-4ae1-9247-263e10a40d40", "name": "Scaleway", "type": "light"}]}]}, {"id": "f4308a8d-6983-466b-a51e-345f1c2d4273", "name": "FTX", "tags": [], "issuers": ["FTX US", "FTX"], "match_rules": [], "icons_collections": [{"id": "003e95fa-9605-4c93-9628-060415a0c6aa", "name": "FTX", "icons": [{"id": "2c910a31-1c62-4836-af25-16b7c86f5a99", "name": "FTX", "type": "light"}]}]}, {"id": "f4582c15-0a20-4f15-a7aa-700dca00d02d", "name": "Toodledo", "tags": [], "issuers": [], "match_rules": [{"text": "Toodledo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Toodledo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "be6e929b-9fec-4383-86ad-862e074e0cc0", "name": "Toodledo", "icons": [{"id": "97646f59-cd08-48a5-8bf8-5165a37388c8", "name": "Toodledo", "type": "light"}]}]}, {"id": "f478c5ea-d8e6-4325-b418-a84013520d7c", "name": "JURA Elektroapparate AG", "tags": [], "issuers": ["JURA Elektroapparate AG"], "match_rules": [], "icons_collections": [{"id": "17367aba-2f2e-4921-9df3-279765cf39e0", "name": "JURA Elektroapparate AG", "icons": [{"id": "7b23bf8c-cf83-4fcf-86b7-630caaee1388", "name": "JURA Elektroapparate AG", "type": "light"}]}]}, {"id": "f4849b82-e5e5-40fa-bb33-5be34bb83689", "name": "WB Games", "tags": ["Warner", "Bros", "Brothers"], "issuers": ["WB Games Account"], "match_rules": null, "icons_collections": [{"id": "04164b86-1b37-4ddd-9bb0-0dd46b23c216", "name": "WB Games Account", "icons": [{"id": "2bc5a358-cc6e-4525-b1e8-3ec1b4e3a883", "name": "WB Games Account", "type": "light"}, {"id": "ecf852e1-ab51-4676-acf6-d9adcc0d06d4", "name": "WB Games Account", "type": "dark"}]}]}, {"id": "f506d1b4-099d-495e-a1a4-c7ecec4d007d", "name": "HurricaneElectric", "tags": [], "issuers": ["ipv6.he.net"], "match_rules": [], "icons_collections": [{"id": "1d9af0ec-056c-4d54-9f99-74011dd76dc5", "name": "HurricaneElectric", "icons": [{"id": "a0288553-c0ff-4baf-93b1-97b871c4163b", "name": "HurricaneElectric", "type": "light"}]}]}, {"id": "f55c3ab8-86f8-40cc-a6da-b9cc35a90ff8", "name": "MURAL", "tags": [], "issuers": [], "match_rules": [{"text": "MURAL", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "MURAL", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "604445d7-9f7c-4acb-b662-4b17dc18a026", "name": "MURAL", "icons": [{"id": "3907290b-c751-4bc0-89e6-7feec306c8ad", "name": "MURAL", "type": "light"}, {"id": "7b70df59-7328-4a48-8ee6-667eac761635", "name": "mural", "type": "dark"}]}]}, {"id": "f580a770-c632-45a0-af1d-f6b616f0393f", "name": "Envoyer", "tags": [], "issuers": [], "match_rules": [{"text": "Envoyer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Envoyer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d239a00c-647a-4e86-8f86-aa8a44fc897e", "name": "Envoyer", "icons": [{"id": "a69f50e5-a614-47af-a341-c547a450a5a3", "name": "Envoyer", "type": "light"}]}]}, {"id": "f5a9a8e5-3167-4b11-a680-03d8aad50784", "name": "Joomla", "tags": [], "issuers": ["Joomla"], "match_rules": [], "icons_collections": [{"id": "fb3f31b8-6ea6-44f9-9129-9094f54ff8f5", "name": "Joomla", "icons": [{"id": "e4660cc9-7c81-4ac0-9c5c-f020f18a8ebc", "name": "Joomla", "type": "light"}]}]}, {"id": "f5d5cb4c-6daa-4926-8891-dd63cc2683c2", "name": "Buhl", "tags": [], "issuers": [], "match_rules": [{"text": "Buhl", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Buhl", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "105803cf-d226-4380-b5e8-f909e4554e8a", "name": "Buhl", "icons": [{"id": "df44b423-09e0-4805-be13-354a9ecb3b4a", "name": "Buhl", "type": "light"}]}]}, {"id": "f5db7e54-c559-45e3-a5f9-7686c0951cb9", "name": "VentraIP", "tags": [], "issuers": [], "match_rules": [{"text": "VentraIP", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VentraIP", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ffb1e97e-4757-4595-afff-4d881e426043", "name": "VentraIP", "icons": [{"id": "3e9037f7-7852-407a-ab3c-4af4dfce4dd4", "name": "VentraIP", "type": "light"}]}]}, {"id": "f5e3e428-9ff8-4b37-8fb0-cf755e49826d", "name": "Bitbuy", "tags": [], "issuers": [], "match_rules": [{"text": "Bitbuy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitbuy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c26c74e3-8766-4ca7-baf5-d0ac72a87394", "name": "Bitbuy", "icons": [{"id": "18ba511c-8422-4e9c-99dd-c71b13d7875d", "name": "Bitbuy", "type": "light"}]}]}, {"id": "f679765a-0626-4ae8-87ca-6f7dc194c77a", "name": "Deel", "tags": [], "issuers": [], "match_rules": [{"text": "Deel", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Deel", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77678f23-9d59-4519-8f4f-a0a57d89d748", "name": "Deel", "icons": [{"id": "19784ca9-04b1-4cd8-bf62-0554891695e1", "name": "Deel", "type": "light"}]}]}, {"id": "f6888c4f-4c5b-4027-8b56-8616bae20ac6", "name": "FastComet", "tags": [], "issuers": [], "match_rules": [{"text": "FastComet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FastComet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1417fa05-e939-4125-a6f3-e963f6271847", "name": "FastComet", "icons": [{"id": "d837720e-c52b-4b15-bec8-bd68c0ae4650", "name": "FastComet", "type": "light"}]}]}, {"id": "f6de2caf-aa67-4e98-a6aa-3682b826a21c", "name": "BTC Markets", "tags": [], "issuers": ["BtcMarkets"], "match_rules": [], "icons_collections": [{"id": "2f4917ca-8e34-4271-9e6c-5d234a181a94", "name": "BTCMarkets", "icons": [{"id": "63725a39-7e60-4f11-9c2a-640a270ef96c", "name": "BTCMarkets", "type": "light"}]}]}, {"id": "f7309d90-ff20-4107-9587-24d33c0810e8", "name": "Pixieset", "tags": [], "issuers": [], "match_rules": [{"text": "Pixieset", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pixieset", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2b110137-a810-4cff-a2f5-90ca5d252c8e", "name": "Pixieset", "icons": [{"id": "b5d8119d-be53-4d4a-b43a-00565785e189", "name": "Pixieset", "type": "dark"}, {"id": "c7631f8b-3e66-48fa-96d9-81a63bf81fdd", "name": "Pixieset", "type": "light"}]}]}, {"id": "f73f0f10-fa7f-471d-980c-7f97a1546688", "name": "DEGIRO", "tags": [], "issuers": ["DEGIRO"], "match_rules": null, "icons_collections": [{"id": "38d29122-8fa4-484d-94ee-d10f1a5efbc3", "name": "DEGIRO", "icons": [{"id": "f9a680a5-7d15-4e84-9478-c8049bc862f9", "name": "DEGIRO", "type": "light"}]}]}, {"id": "f762bea4-d385-4a35-be4a-ffcda80931e9", "name": "Hetzner", "tags": [], "issuers": ["Hetzner"], "match_rules": [], "icons_collections": [{"id": "86ee7a24-b59a-4f75-b2aa-18bb718b903a", "name": "Hetzner", "icons": [{"id": "221c3b16-aac7-4240-acf9-e9eb3c921945", "name": "Hetzner", "type": "light"}, {"id": "b2ba9cc5-047b-4bbe-98d1-2e526ba7fac4", "name": "Hetzner", "type": "dark"}]}]}, {"id": "f76dc205-7c4a-4413-b80b-75bf8898502e", "name": "Questrade", "tags": [], "issuers": ["Questrade"], "match_rules": [], "icons_collections": [{"id": "46a1e2f1-6949-46f8-8929-92059652e041", "name": "Questrade", "icons": [{"id": "c072cac6-531b-4ca1-ae13-d384f675fe69", "name": "Questrade", "type": "light"}]}]}, {"id": "f79b5297-c5ba-499d-b91b-00eca37da6bb", "name": "Aruba Instant On", "tags": [], "issuers": [], "match_rules": [{"text": "Aruba Instant On", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Aruba Instant On", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "88639af3-e04b-45b6-926d-f7791998b823", "name": "Aruba Instant On", "icons": [{"id": "95332f67-8699-4116-a66a-bf5c4775f2aa", "name": "Aruba Instant On", "type": "light"}]}]}, {"id": "f82a02c7-c5af-4789-95bc-37cdba23fcce", "name": "Kriptomat", "tags": [], "issuers": [], "match_rules": [{"text": "Kriptomat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Kriptomat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a1007044-db32-4abc-844e-6e684b91ba31", "name": "Kriptomat", "icons": [{"id": "9c9dccfa-2331-4ed0-bfc5-a7a1335155e7", "name": "Kriptomat", "type": "light"}]}]}, {"id": "f86f896c-dab5-41bf-a26a-c2f72db97147", "name": "Vaultwarden", "tags": [], "issuers": [], "match_rules": [], "icons_collections": [{"id": "9e8e1d18-b9da-47d2-ab45-1ff78a398adf", "name": "Vaultwarden", "icons": [{"id": "5380b8c3-f224-4278-af4d-6b4a19d869a1", "name": "Vaultwarden", "type": "dark"}, {"id": "68528055-b4be-49cc-8e49-f46ddb02449d", "name": "Vaultwarden", "type": "light"}]}]}, {"id": "f8b057b6-472f-4558-958b-3c2dfe6e7163", "name": "University of Otago", "tags": [], "issuers": [], "match_rules": [{"text": "University of Otago", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Otago", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "05fd202a-986f-449f-bebf-52f70aa01d5a", "name": "University of Otago", "icons": [{"id": "e4a54e3f-3785-499f-bd27-e50bee3d3b6a", "name": "University of Otago", "type": "light"}]}]}, {"id": "f94aa238-33ff-4804-858d-46f2681b1a57", "name": "Nexon", "tags": [], "issuers": [], "match_rules": [{"text": "Nexon", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nexon", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6870295d-9e5d-48a4-88f0-66def67948e5", "name": "Nexon", "icons": [{"id": "7e17b194-2f98-4851-b424-9d78ceb1501d", "name": "Nexon", "type": "light"}]}]}, {"id": "f956a148-2a36-4906-9f2f-4f07daedf566", "name": "SolarWinds", "tags": [], "issuers": [], "match_rules": [{"text": "SolarWinds", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SolarWinds", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c3a989dc-0893-49e4-90ac-73cd967b731f", "name": "SolarWinds", "icons": [{"id": "c644cb3f-bd7c-4d3d-b6fa-e0bea41f01eb", "name": "SolarWinds", "type": "light"}]}]}, {"id": "f9e983fd-ebff-4ab2-afa7-8a83eae8ded2", "name": "CloudConvert", "tags": [], "issuers": [], "match_rules": [{"text": "CloudConvert", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CloudConvert", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ecaba12b-0139-4156-b6ec-2f21ba67efc1", "name": "CloudConvert", "icons": [{"id": "eb22b1ad-fdd0-4e43-8a62-9fb3fe13184a", "name": "CloudConvert", "type": "light"}]}]}, {"id": "f9f298ef-7de4-4cf0-9091-72d1c62104c3", "name": "Crowd Supply", "tags": [], "issuers": [], "match_rules": [{"text": "Crowd Supply", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Crowd Supply", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77963b50-6fac-47a5-8157-9082ea989cce", "name": "Crowd Supply", "icons": [{"id": "e175ebef-d195-4525-9b54-7f389fddf629", "name": "Crowd Supply", "type": "light"}]}]}, {"id": "fa0801c4-e26b-47b2-85b3-8e1f3dcd21c5", "name": "Crypto.com", "tags": [], "issuers": ["crypto.com"], "match_rules": [], "icons_collections": [{"id": "93d4f71f-05e8-4442-885b-24b742be8459", "name": "Crypto.com", "icons": [{"id": "45965f47-72c5-4837-be53-824941c6c36c", "name": "Crypto.com", "type": "light"}, {"id": "9b5ba37c-271b-4022-bc99-567ed8f8e71a", "name": "Crypto.com", "type": "dark"}]}]}, {"id": "fa3812f2-3520-4e6f-9365-246215f59b71", "name": "Skinport", "tags": [], "issuers": [], "match_rules": [{"text": "Skinport", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c8b94125-e8eb-4661-a6c3-d9bd064ede8a", "name": "Skinport", "icons": [{"id": "e2367264-0354-4375-b537-bd735e3cce67", "name": "Skinport", "type": "light"}]}]}, {"id": "fa63a7f1-557e-4eda-813a-274e405f0559", "name": "ArenaNet", "tags": [], "issuers": ["ArenaNet"], "match_rules": [], "icons_collections": [{"id": "27a27849-ac36-4374-a156-32cc4e58d464", "name": "arena.net", "icons": [{"id": "57d4c5e4-3451-450c-a826-da5d5daf4bdf", "name": "arena.net", "type": "dark"}, {"id": "6e245eff-3eae-4b87-9d05-a5bbfea39217", "name": "arena.net", "type": "light"}]}]}, {"id": "fac857f1-b687-44ae-8c84-3f1d360c830b", "name": "DCS World", "tags": [], "issuers": [], "match_rules": [{"text": "DCS World", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DCS World", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d61af4dc-565e-4e69-a7e6-9db4a819f220", "name": "DCS World", "icons": [{"id": "dd309ec3-f8b1-4488-93c5-56ba9f8dabb0", "name": "DCS World", "type": "light"}, {"id": "f18d7b08-3f49-45d1-b50e-ae12f3e25006", "name": "DCS World", "type": "dark"}]}]}, {"id": "fad4b929-928a-46ce-8e06-8906ac02d20c", "name": "Niagahoster", "tags": [], "issuers": [], "match_rules": [{"text": "Niagahoster", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Niagahoster", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ba8ec043-8a4d-4db9-bcc6-47a751be942b", "name": "Niagahoster", "icons": [{"id": "da2d9f10-3681-45ff-ab0c-b221ca4e2363", "name": "Niagahoster", "type": "light"}]}]}, {"id": "fb29aa88-b20a-41e2-93f5-bd523efafd8f", "name": "Wirex", "tags": [], "issuers": [], "match_rules": [{"text": "Wirex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wirex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0894b232-4b02-473b-9fe7-e448127bc3e5", "name": "Wirex", "icons": [{"id": "3e697e6b-f1a8-4a5d-80e6-6742bdb7873e", "name": "Wirex", "type": "light"}]}]}, {"id": "fb2c6356-a37d-4515-a54a-8403471d5885", "name": "Gogs", "tags": [], "issuers": ["Gogs"], "match_rules": [], "icons_collections": [{"id": "ae1f5718-ad69-4957-bad6-cc7fcabc26d4", "name": "Gogs", "icons": [{"id": "d02d6e27-3686-43e6-9a91-a46f0919516e", "name": "Gogs", "type": "light"}]}]}, {"id": "fb35f352-aefb-4ff9-b618-2e7c2fd5c18e", "name": "Blockchains, LLC", "tags": [], "issuers": ["Blockchains, LLC."], "match_rules": [], "icons_collections": [{"id": "5f6b8637-d24d-4245-b360-005046e55c70", "name": "Blockchains, LLC", "icons": [{"id": "12679fc9-dd20-4e2b-ae67-24d9f2ae7500", "name": "Blockchains, LLC", "type": "dark"}, {"id": "7c1cfbe4-fed6-4f3e-8ee2-609a785496d1", "name": "Blockchains, LLC", "type": "light"}]}]}, {"id": "fb9c083f-8f5f-42ee-a9a6-8c51a7e5a963", "name": "Fathom", "tags": [], "issuers": [], "match_rules": [{"text": "Fathom", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fathom", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7403e02f-7cde-435e-a7a3-74262230979c", "name": "Fathom", "icons": [{"id": "dccce195-3667-4d3f-b1ac-6c6fe30e76c7", "name": "Fathom", "type": "light"}]}]}, {"id": "fb9f7bf4-2f57-42f8-bd80-023c1f53b8c2", "name": "Threshold", "tags": [], "issuers": ["Threshold"], "match_rules": null, "icons_collections": [{"id": "391c7f84-6909-4019-a1c2-5dc208364ace", "name": "Threshold", "icons": [{"id": "2016132d-760f-43ae-ad96-568d757248a4", "name": "Threshold", "type": "light"}, {"id": "a7db038d-cf13-4ce6-9d55-320eed4c0f30", "name": "Threshold", "type": "dark"}]}]}, {"id": "fba0f493-cb2a-4f84-914a-ce26b1145782", "name": "CoinStats", "tags": [], "issuers": [], "match_rules": [{"text": "CoinStats", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "816e759c-2c73-45b7-ad93-702c184cff77", "name": "CoinStats", "icons": [{"id": "0f692a1f-ae76-4a68-b041-a609f8a10083", "name": "CoinStats", "type": "light"}]}]}, {"id": "fbb55c4d-aac4-4aa6-bdee-92290594f0d0", "name": "Cointraffic", "tags": [], "issuers": [], "match_rules": [{"text": "Cointraffic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cointraffic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "01d512e6-f0c1-4744-8015-ec73085575b9", "name": "Cointraffic", "icons": [{"id": "14e9d19c-6473-4c35-8562-7848f49a7779", "name": "Cointraffic", "type": "light"}]}]}, {"id": "fbd38226-1c28-4466-b238-54305ed57f3a", "name": "MS 365", "tags": ["Microsoft"], "issuers": [], "match_rules": [{"text": "Microsoft 365", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Microsoft 365", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "246abec1-9301-4973-b3f3-428a3bc06d48", "name": "MS 365", "icons": [{"id": "4c2e2f82-4b1f-4c13-839e-69cd0ffa1128", "name": "Microsoft 365", "type": "light"}]}]}, {"id": "fbec07ef-f5a6-4754-a160-d151ace83a20", "name": "Brandwatch", "tags": [], "issuers": [], "match_rules": [{"text": "Brandwatch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Brandwatch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9701f706-b728-4f2f-810c-055ef72f8a5f", "name": "Brandwatch", "icons": [{"id": "6aad25c0-2bcd-46b6-b4e8-a510fd97d5b2", "name": "Brandwatch", "type": "light"}]}]}, {"id": "fbf7bd09-937b-48f2-81e1-4ff1f3215247", "name": "Technic", "tags": [], "issuers": [], "match_rules": [{"text": "Technic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Technic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e7d8c8ac-f74d-45bf-a2a1-5a210defc060", "name": "Technic", "icons": [{"id": "de929264-1255-4a4b-86ae-bee86b5683c0", "name": "Technic", "type": "light"}]}]}, {"id": "fc65eeac-5e2c-4134-9eef-ad4cec5e7a6f", "name": "Huawei", "tags": [], "issuers": [], "match_rules": [{"text": "Huawei", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Huawei", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aa50b4af-bd32-4e4e-98c5-5ec7e046a49a", "name": "Huawei", "icons": [{"id": "7cff85b5-0dc0-41a9-b1e3-fc2d5a21313f", "name": "Huawei Cloud", "type": "light"}]}]}, {"id": "fc74cd86-c86b-4f8a-963e-bddc59c4e1c6", "name": "Frame", "tags": [], "issuers": [], "match_rules": [{"text": "Frame", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Frame", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "73afc6d8-4c4d-46e6-9b36-5862b9b5ccb7", "name": "Frame", "icons": [{"id": "28b2f690-e30b-41f0-b52f-4e561f60f9cd", "name": "Frame", "type": "light"}]}]}, {"id": "fc766efb-e6cb-4718-85b3-8fd1de572abe", "name": "BlueSnap", "tags": [], "issuers": [], "match_rules": [{"text": "BlueSnap", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BlueSnap", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "633b3d2f-b8c8-4219-83f8-4c3accbe4657", "name": "BlueSnap", "icons": [{"id": "b505cb19-ce9b-4998-8ce8-a6a60d8804f8", "name": "BlueSnap", "type": "light"}]}]}, {"id": "fc7eaf24-eb31-4a86-85c5-d86471eabd11", "name": "System76", "tags": [], "issuers": [], "match_rules": [{"text": "System76", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "System76", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0550ec18-8151-446a-b7df-a0acdc0b857a", "name": "System76", "icons": [{"id": "f2deb3a3-ae82-4cea-81c5-38d1e7f0c1e6", "name": "System76", "type": "light"}]}]}, {"id": "fd322bab-6431-4e6d-80c7-96a8559543f9", "name": "Pocket", "tags": [], "issuers": [], "match_rules": [{"text": "Pocket", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pocket", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7f42621f-55a9-4ee8-a978-3ac9f0797893", "name": "Pocket", "icons": [{"id": "531b31fb-de75-4a8d-b02f-8d01a21abc3f", "name": "Pocket", "type": "light"}]}]}, {"id": "fd842cd6-1ce0-4b09-a7d7-ee10f30845b2", "name": "Razer", "tags": [], "issuers": ["Razer"], "match_rules": [], "icons_collections": [{"id": "c4e2d69c-f532-4795-990d-fe380bd517ba", "name": "Razer", "icons": [{"id": "975dc85c-5c56-478b-961c-1cf996476347", "name": "Razer", "type": "light"}]}]}, {"id": "fd8f0a74-239d-42bf-a537-38cf9cf2c7f2", "name": "Qualifio", "tags": [], "issuers": ["Qualifio"], "match_rules": null, "icons_collections": [{"id": "284940c6-710d-473a-a7e5-c9f43001033b", "name": "Qualifio", "icons": [{"id": "7c2de2c0-1943-4550-8e98-611ae3f06c12", "name": "Qualifio", "type": "light"}]}]}, {"id": "fdb95870-569c-471f-84ce-0356d13da20e", "name": "Google", "tags": [], "issuers": ["Google"], "match_rules": [], "icons_collections": [{"id": "66190b0f-9600-4a6f-b06b-33254b5316ad", "name": "Google", "icons": [{"id": "6de001fb-6104-4fce-a622-630b820a7ea9", "name": "Google", "type": "light"}]}]}, {"id": "fdc49d4e-9001-4734-ae81-214cc74ffa10", "name": "Coincheck", "tags": [], "issuers": [], "match_rules": [{"text": "Coincheck", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coincheck", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9f0cf664-b0a5-4174-9f16-e55b49bb8289", "name": "Coincheck", "icons": [{"id": "615bca14-cf01-4169-8a86-265b84778e03", "name": "Coincheck", "type": "light"}]}]}, {"id": "fdd47935-9157-4e1c-bab8-a44671603581", "name": "Hestia Control Panel", "tags": [], "issuers": [], "match_rules": [{"text": "Hestia Control Panel", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Hestia Control Panel", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85fbeb02-ceff-42bb-a852-a377ece60bbf", "name": "Hestia Control Panel", "icons": [{"id": "223eb0f5-9d93-4932-888b-d563ff102aa8", "name": "Hestiacp", "type": "light"}]}]}, {"id": "fde0ed28-9edb-487a-acbc-d8c5e91daf7d", "name": "Kite", "tags": ["Zerodha"], "issuers": ["kite"], "match_rules": null, "icons_collections": [{"id": "1a0adfa5-37ea-4315-8b48-ee1d7297b1b1", "name": "Kite", "icons": [{"id": "962b1e6d-109f-4b19-82a6-85417ea6db02", "name": "Kite", "type": "light"}]}]}, {"id": "fdf8841c-9b3b-46db-9e9f-5315015b733d", "name": "hide.me VPN", "tags": [], "issuers": [], "match_rules": [{"text": "hide.me VPN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "hide.me VPN", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "226e9a72-47bb-455a-8f08-92a26740723a", "name": "hide.me VPN", "icons": [{"id": "350c418a-5143-4f02-b057-64a7b5a323b8", "name": "hide.me VPN", "type": "light"}]}]}, {"id": "fe4a7604-1485-4f78-81ea-2dae5c34fc2a", "name": "Dext Prepare", "tags": [], "issuers": [], "match_rules": [{"text": "Dext Prepare", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Dext Prepare", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "07eb5464-2dd9-4e65-831d-f349652d2a5f", "name": "Dext Prepare", "icons": [{"id": "ce161084-3ac4-4978-86f7-18b6f2f58485", "name": "Dext Prepare", "type": "light"}]}]}, {"id": "fed5abe5-3bd5-4b3f-8b12-0cedd32f9080", "name": "iTrust Capital", "tags": [], "issuers": [], "match_rules": [{"text": "iTrust Capital", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "iTrust Capital", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "iTrust(\\+|\\s|-|_)Capital", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "iTrust(\\+|\\s|-|_)Capital", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "9a38ecdf-3fd0-48bc-a0c8-985cff6df7da", "name": "iTrust Capital", "icons": [{"id": "414a1176-2d11-4dec-a82a-50ca47390271", "name": "iTrust Capital", "type": "light"}, {"id": "9ef44968-ff95-4e43-a1cf-de9a65d980e2", "name": "iTrust Capital", "type": "dark"}]}]}, {"id": "fedbf513-6136-460b-970d-fc468637c64e", "name": "InMotion Hosting", "tags": [], "issuers": [], "match_rules": [{"text": "InMotion Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "InMotion Hosting", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "92636822-e01f-4479-b079-833a32f52103", "name": "InMotion Hosting", "icons": [{"id": "dd117369-5495-48d8-8bef-12c92c1a61ff", "name": "InMotion Hosting", "type": "light"}]}]}, {"id": "ff0b65aa-ff15-4e42-ba4c-bd04a281f509", "name": "Parallels", "tags": [], "issuers": ["Parallels"], "match_rules": null, "icons_collections": [{"id": "ec02758e-b344-4e99-8aa6-bb4436cad989", "name": "Parallels", "icons": [{"id": "158c1c9f-86a4-4758-abab-7596f8ff73d4", "name": "Parallels", "type": "light"}]}]}, {"id": "ff0ed7b6-0716-46fa-8646-052883572f1f", "name": "Roberts Space Industries", "tags": ["rsi"], "issuers": ["Roberts Space Industries"], "match_rules": null, "icons_collections": [{"id": "7c4a3fa2-5a2d-43e0-b87e-5c3628eae326", "name": "Roberts Space Industries", "icons": [{"id": "058fe5bb-83e4-4063-adc9-c74ec6e87c4d", "name": "Roberts Space Industries", "type": "light"}]}]}, {"id": "ff328fdc-ae0b-4d95-92d4-7b7ca4266f65", "name": "CoinTracking", "tags": [], "issuers": [], "match_rules": [{"text": "CoinTracking", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinTracking", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "52074c1a-8fea-49ab-bda7-e2551021d957", "name": "CoinTracking", "icons": [{"id": "3053b59b-a430-44ae-a529-6953da919c51", "name": "CoinTracking", "type": "light"}]}]}, {"id": "ffe11441-947f-47eb-97eb-c4fe99f2ccfa", "name": "University of Groningen", "tags": [], "issuers": [], "match_rules": [{"text": "University of Groningen", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Groningen", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1a570717-7b28-4311-b1aa-b1cb265c1b27", "name": "University of Groningen", "icons": [{"id": "1dbcb5f8-5bbe-4970-8837-fdd5e0d6e781", "name": "University of Groningen", "type": "light"}]}]}] \ No newline at end of file +[{"id": "0001f2bd-6892-4766-91ca-bc15f61062aa", "name": "Hatch", "tags": [], "issuers": [], "match_rules": [{"text": "Hatch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hatch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d7943718-d16e-4086-9a45-39f3ee555776", "name": "Hatch", "icons": [{"id": "da46ca2a-3761-493d-bfdb-78f3898e1fdb", "name": "Hatch", "type": "light"}]}]}, {"id": "000dee19-e7ed-4888-ac9e-a38c1cffcaa6", "name": "Etana Custody", "tags": [], "issuers": [], "match_rules": [{"text": "Etana Custody", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Etana Custody", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bf300482-59da-4d69-8860-a7a72c48bc3c", "name": "Etana Custody", "icons": [{"id": "24976f58-6025-4302-9f5f-74095c041f34", "name": "Etana Custody", "type": "light"}]}]}, {"id": "002fd04d-4046-4629-952b-ee92f17e2e09", "name": "IONOS", "tags": [], "issuers": ["IONOS"], "match_rules": [], "icons_collections": [{"id": "a70bea5a-ea3a-46c0-baaf-e837a66aac19", "name": "IONOS", "icons": [{"id": "a0f2843a-b865-433f-8267-45e57540ee08", "name": "IONOS", "type": "light"}]}]}, {"id": "00576ec3-12ab-4a5d-a024-762c5c394d57", "name": "IO Zoom", "tags": [], "issuers": [], "match_rules": [{"text": "IO Zoom", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IO Zoom", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b64d17ab-f1ca-4ba1-8e61-af8133ee3f88", "name": "IO Zoom", "icons": [{"id": "22a10984-19c3-4668-8fef-4ce5cc9990e8", "name": "IO Zoom", "type": "dark"}, {"id": "9f231dfd-9ed7-4abf-9690-33976b3832cf", "name": "IO Zoom", "type": "light"}]}]}, {"id": "0149357f-7f61-424c-adf7-5dafc8e077c4", "name": "Airtable", "tags": [], "issuers": [], "match_rules": [{"text": "Airtable", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Airtable", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f100a5ca-c5e7-4336-9af6-c9be4ce44641", "name": "Airtable", "icons": [{"id": "5e8eecba-e92f-40c8-8192-cec04b0599de", "name": "Airtable", "type": "light"}]}]}, {"id": "0217bfa3-c811-41ab-82af-e82e3519e7da", "name": "Nutmeg", "tags": [], "issuers": [], "match_rules": [{"text": "Nutmeg", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nutmeg", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3fff0081-bcf7-4e48-8d91-7f942713dc6d", "name": "Nutmeg", "icons": [{"id": "2aab8fab-e48c-4861-ab0d-f3ad78d9036a", "name": "Nutmeg", "type": "light"}]}]}, {"id": "022b8e24-46bd-4236-b522-f48007a6f736", "name": "ANY.RUN", "tags": [], "issuers": [], "match_rules": [{"text": "ANY.RUN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ANY.RUN", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "ANYRUN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ANYRUN", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "15a6d950-7998-412d-b7da-9ea09beae210", "name": "ANY.RUN", "icons": [{"id": "092e971d-bf5e-4d35-b5c0-f04a1fa1f948", "name": "ANY.RUN", "type": "light"}]}]}, {"id": "02c27503-888f-4a86-bd1c-ff1142822f7a", "name": "OzBargain", "tags": [], "issuers": [], "match_rules": [{"text": "OzBargain", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OzBargain", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c2db9410-6053-4d52-96f3-4acd16b7cf6a", "name": "OzBargain", "icons": [{"id": "3c336a67-7168-48ae-b7d0-76342b251a93", "name": "OzBargain", "type": "light"}]}]}, {"id": "02dfcfe3-b403-4130-a26b-3fc4c83fc4ba", "name": "Airbrake", "tags": [], "issuers": ["Airbrake"], "match_rules": null, "icons_collections": [{"id": "9f4e3ac3-c09f-4229-9f99-27b94e6e3372", "name": "Airbrake", "icons": [{"id": "4162cb46-35e2-41f6-92db-163542cdc93b", "name": "Airbrake", "type": "light"}]}]}, {"id": "032c2fd7-14ab-4d22-8b9f-f7b77bdf1146", "name": "HappyFox", "tags": [], "issuers": [], "match_rules": [{"text": "HappyFox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HappyFox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5d91d726-72c8-425b-bbe7-41a1eb6c1346", "name": "HappyFox", "icons": [{"id": "74132e80-5874-479a-be16-40426b7afce2", "name": "HappyFox", "type": "light"}]}]}, {"id": "032ecea7-6ffd-4a28-bd8f-38d583c645ce", "name": "Egnyte", "tags": [], "issuers": [], "match_rules": [{"text": "Egnyte", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Egnyte", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c62c308c-926e-4b54-bfcc-241c4f384758", "name": "Egnyte", "icons": [{"id": "a29febaf-206d-465b-91d9-3601789c774c", "name": "Egnyte", "type": "light"}]}]}, {"id": "0336adda-650e-4082-a24b-4a2165c3a043", "name": "USPTO", "tags": [], "issuers": ["MyUSPTO"], "match_rules": null, "icons_collections": [{"id": "13838d86-6882-4851-81c1-272b128feb5d", "name": "USPTO", "icons": [{"id": "8a10866e-9a2d-4014-886a-092e3329dd80", "name": "USPTO", "type": "dark"}, {"id": "da8f89ed-7f3f-4aa4-9c84-31d74b87160d", "name": "USPTO", "type": "light"}]}]}, {"id": "033df8c3-8160-4b6a-8ce0-c2be0460797e", "name": "X-Plane.org", "tags": [], "issuers": ["X-Plane.Org Forum"], "match_rules": null, "icons_collections": [{"id": "a2d05cd0-6c88-45ee-9997-b77adb726bfa", "name": "X-Plane.org", "icons": [{"id": "678c3721-023e-461b-8b81-fce2f238d7fd", "name": "X-Plane.org", "type": "light"}]}]}, {"id": "036733dc-870c-4a5e-b0df-f4dde5cc2a4a", "name": "Trading 212", "tags": [], "issuers": ["Trading 212"], "match_rules": null, "icons_collections": [{"id": "90ae4dbd-22cd-491d-9211-347df50aabe2", "name": "Trading 212", "icons": [{"id": "006a974f-48c9-4c94-b913-45dac870b52f", "name": "Trading 212", "type": "light"}]}]}, {"id": "038191ea-9f3a-4b83-bc04-c2e55b9b08ca", "name": "WEDOS", "tags": [], "issuers": [], "match_rules": [{"text": "WEDOS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "WEDOS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8858b30f-9416-47b9-8eb1-afef063f3203", "name": "WEDOS", "icons": [{"id": "1353934b-1711-44f7-a0c5-81e4f2169792", "name": "WEDOS", "type": "light"}]}]}, {"id": "0390ac2b-31bf-4179-aaf5-2e59c16f6dd8", "name": "Toshl", "tags": [], "issuers": [], "match_rules": [{"text": "Toshl", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Toshl", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dbae7c12-fe87-4979-838b-50e0c77d6e55", "name": "Toshl", "icons": [{"id": "a46f5a23-4845-404c-a49c-c0df74d0f56b", "name": "Toshl", "type": "light"}]}]}, {"id": "03a9aa26-6b0d-48a9-bac8-d068d52b0171", "name": "Legal & General", "tags": [], "issuers": [], "match_rules": [{"text": "Legal & General", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Legal & General", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Legal+&+General", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Legal+&+General", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "670dcfc9-9984-46e5-9e4c-0bfe3ff538f6", "name": "Legal & General", "icons": [{"id": "38a06918-90a9-42cc-b6be-6358f0e37dff", "name": "Legal & General", "type": "light"}]}]}, {"id": "03bc1020-723f-445e-b9a8-530b8c37cc71", "name": "Stackhero", "tags": [], "issuers": ["Stackhero"], "match_rules": null, "icons_collections": [{"id": "236f8ce2-36d4-4c65-a7db-645b2be0261e", "name": "Stackhero", "icons": [{"id": "823b2ffb-fc12-440b-80ea-a89fce2bb926", "name": "Stackhero", "type": "dark"}, {"id": "9c775e93-f629-47c1-809d-da1e08b44e59", "name": "Stackhero", "type": "light"}]}]}, {"id": "03ce228c-bde7-4ab6-bbe2-94b85ef4b3cd", "name": "Outlook", "tags": [], "issuers": [], "match_rules": [{"text": "Outlook.com", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "775511ec-6424-401e-af3d-5af729e575a7", "name": "Outlook", "icons": [{"id": "e7687160-8a86-4ca0-89ff-67bb12133300", "name": "Outlook.com", "type": "light"}]}]}, {"id": "03e91fc4-2c54-45ed-8756-290d9e4f8c2b", "name": "Finnair", "tags": [], "issuers": [], "match_rules": [{"text": "Finnair", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Finnair", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a79b0811-48c9-4d26-817c-796a88fd9278", "name": "Finnair", "icons": [{"id": "13081885-7ebd-4c40-9568-0e24fdbbd355", "name": "Finnair", "type": "dark"}, {"id": "9d735c4e-c23b-4b45-8b4c-8578d985a3ea", "name": "Finnair", "type": "light"}]}]}, {"id": "03f4ca73-e931-4ec2-b329-5f133ad99d51", "name": "Revivenode", "tags": [], "issuers": [], "match_rules": [{"text": "Revivenode", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Revivenode", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9e3c4a03-3b8c-4969-97fb-39f4ef312417", "name": "Revivenode", "icons": [{"id": "e4e8f2cf-d367-42d0-8837-5827e4b2efe9", "name": "Revivenode", "type": "light"}]}]}, {"id": "04246e03-1bf2-430b-9beb-8820a57caeab", "name": "Blacknight", "tags": [], "issuers": [], "match_rules": [{"text": "Blacknight", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Blacknight", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eefc1a8d-1c82-44d3-89d4-5c114b40fa37", "name": "Blacknight", "icons": [{"id": "0b79c895-afe3-4588-af44-fd50e41ce7dc", "name": "Blacknight", "type": "light"}, {"id": "25f13b8e-bb8e-42e9-938d-0390bf8d51ca", "name": "Blacknight", "type": "dark"}]}]}, {"id": "042b2e57-dc5e-41ee-bc5a-9482af8a2c84", "name": "Swyftx", "tags": [], "issuers": [], "match_rules": [{"text": "Swyftx", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Swyftx", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "064aeec9-3b93-4491-ac6b-5bb621c0b668", "name": "Swyftx", "icons": [{"id": "1c0e4234-8f9b-4744-af70-3ed3ccec814a", "name": "Swyftx", "type": "light"}, {"id": "e91bd1b4-ca22-4fbd-b22d-6963f358493a", "name": "Swyftx", "type": "dark"}]}]}, {"id": "043d0156-95ac-4d35-b9ea-7ca2cd8ea8af", "name": "Aternos", "tags": [], "issuers": ["Aternos"], "match_rules": null, "icons_collections": [{"id": "f5b2dde6-8f5d-4ca3-9b19-d10ef552d8b1", "name": "Aternos", "icons": [{"id": "b57bc046-633d-436f-b28b-488d2839691a", "name": "Aternos", "type": "light"}, {"id": "bdaeaae4-4d21-4662-b347-845e9fe182b2", "name": "Aternos", "type": "dark"}]}]}, {"id": "044d1095-ede6-4033-938c-4a409ab3a2c6", "name": "Ring", "tags": [], "issuers": ["Ring.com"], "match_rules": [], "icons_collections": [{"id": "97f2c094-5a55-4406-b06a-3229b0e08db5", "name": "Ring", "icons": [{"id": "26d95dc7-24b7-4de5-b777-b190e085a596", "name": "Ring", "type": "light"}]}]}, {"id": "04e370dd-b2d5-4998-8a21-02b65261355c", "name": "Customer.io", "tags": [], "issuers": [], "match_rules": [{"text": "Customer.io", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Customer.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e76ede36-b83c-4840-a822-6b1de8058ebb", "name": "Customer.io", "icons": [{"id": "4cb25e6b-07a5-485e-b2a5-4ef86f965cb7", "name": "Customer.io", "type": "light"}]}]}, {"id": "04e4ac3d-e993-4d93-bfca-baa38a534698", "name": "Barmenia", "tags": [], "issuers": [], "match_rules": [{"text": "Barmenia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Barmenia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e5d554bf-f48b-46d5-b108-fab3ca86392c", "name": "Barmenia", "icons": [{"id": "25cafe3d-5099-465a-9298-7e644cfc1b60", "name": "Barmenia", "type": "light"}]}]}, {"id": "04e7f038-8903-484c-b4a6-2943e39b5625", "name": "Black Desert", "tags": [], "issuers": [], "match_rules": [{"text": "Black Desert", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Black Desert", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3586a32d-147f-4221-9eef-9d981485b118", "name": "Black Desert", "icons": [{"id": "292cf267-df8d-4561-8091-5dd3e67e6fb7", "name": "Black Desert", "type": "light"}]}]}, {"id": "05f01a81-966d-4b44-a264-1e8e76e58011", "name": "ProBit", "tags": [], "issuers": [], "match_rules": [{"text": "ProBit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ProBit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7e33e824-fb2c-4a67-acf6-a0f857915342", "name": "ProBit", "icons": [{"id": "485e8039-77fd-4e32-8f74-7a7ead8c1dbb", "name": "ProBit", "type": "light"}]}]}, {"id": "0642640d-52f8-4d2a-ba7f-b2e98dcc4760", "name": "Tibia", "tags": [], "issuers": [], "match_rules": [{"text": "Tibia", "field": "label", "matcher": "equals", "ignore_case": true}], "icons_collections": [{"id": "9a59764b-6e14-469c-aa17-d78652774dbe", "name": "Tibia", "icons": [{"id": "d4f496a8-5e47-4efc-8cc6-14bc1c499940", "name": "Tibia", "type": "light"}]}]}, {"id": "06458fc0-2115-4693-b92d-7e0456c115df", "name": "Plesk 360", "tags": [], "issuers": [], "match_rules": [{"text": "Plesk 360", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Plesk 360", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "62dd1965-0868-4b7b-9e36-fe7170643ed7", "name": "Plesk 360", "icons": [{"id": "9ca2e787-5155-4862-b508-26b104e9b9e5", "name": "Plesk 360", "type": "light"}]}]}, {"id": "0658227c-ef86-4948-b737-ec1bfc11cbbb", "name": "MailChimp", "tags": ["intuit"], "issuers": [], "match_rules": [{"text": ".mailchimp.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "236dad43-1697-46fc-ad86-761702f14307", "name": "MailChimp", "icons": [{"id": "ba5a0a16-bdad-494a-8ef1-14c5df2bb185", "name": "MailChimp", "type": "light"}]}]}, {"id": "06748548-0a16-4215-964a-20135e373cfa", "name": "Cobalt", "tags": [], "issuers": [], "match_rules": [{"text": "Cobalt", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cobalt", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "484cffd9-3295-4bd5-a344-fec8be73d53a", "name": "Cobalt", "icons": [{"id": "4a5fc381-123c-4ad7-a2c8-44b1d1e938c9", "name": "Cobalt", "type": "light"}]}]}, {"id": "0680591a-0464-44cc-8546-d61666088dbc", "name": "Home Assistant", "tags": [], "issuers": ["Home Assistant"], "match_rules": [], "icons_collections": [{"id": "7db360bb-425b-49c5-aa23-c0cdb2129a77", "name": "Home Assistant", "icons": [{"id": "cfcecddd-b63f-4411-ba56-67ce3b0cdaf9", "name": "Home Assistant", "type": "light"}]}]}, {"id": "0755b13f-d3d1-43b0-b6a8-4348519cbdc7", "name": "AdGuard", "tags": [], "issuers": ["AdGuard"], "match_rules": [], "icons_collections": [{"id": "fe37e55d-3a49-4b40-b974-76b89dd97d9a", "name": "AdGuard", "icons": [{"id": "38031d64-8dd9-4d9b-8d30-4c6f6c07dc2c", "name": "AdGuard", "type": "light"}]}]}, {"id": "0777bbc7-ac7f-4ef0-ab3a-a5a3d8d29168", "name": "T-Mobile", "tags": [], "issuers": ["T-Mobile ID"], "match_rules": [], "icons_collections": [{"id": "c73afe02-0141-4165-8583-3bb5c0c5d039", "name": "T-Mobile", "icons": [{"id": "45203fbc-ff79-4098-b0af-cdc5c4237a7f", "name": "T-Mobile", "type": "light"}]}]}, {"id": "07874658-2a42-4532-b98b-cf1a407b5834", "name": "Guild Wars 2", "tags": [], "issuers": [], "match_rules": [{"text": "Guild Wars 2", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Guild Wars 2", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "330dc006-2763-4a76-8a0f-ba8ce55d6dd5", "name": "Guild Wars 2", "icons": [{"id": "357b3bdb-c246-4fdc-8ef9-9cb95e124c9b", "name": "Guild Wars 2", "type": "light"}, {"id": "d41aa2c1-57e9-4a27-bed3-907c9d44f5d2", "name": "Guild Wars", "type": "dark"}]}]}, {"id": "07df90d4-bba5-4a31-b62d-08b04d631132", "name": "Digitec", "tags": [], "issuers": [], "match_rules": [{"text": "Digitec", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Digitec", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "71b1d34a-1332-4786-8974-431ee10f06a6", "name": "Digitec", "icons": [{"id": "c6007490-837f-4bd9-a78d-c7d4e19f4e5b", "name": "Digitec", "type": "light"}]}]}, {"id": "0828da95-c0e5-4cbd-bb98-d4af8e471e44", "name": "LocalBitcoins", "tags": [], "issuers": [], "match_rules": [{"text": "LocalBitcoins", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LocalBitcoins", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "40df2129-55b8-459c-9658-7b45b4c6eea7", "name": "LocalBitcoins", "icons": [{"id": "e0ba8ea7-402a-4ac5-b1d2-88acf984aaa0", "name": "LocalBitcoins", "type": "light"}]}]}, {"id": "0847b922-d5ee-478d-8705-fc661dc2e83a", "name": "Upwork", "tags": [], "issuers": ["Upwork"], "match_rules": [], "icons_collections": [{"id": "890ad18d-ff18-4aac-beb4-9311d9941019", "name": "Upwork", "icons": [{"id": "f2180df0-6e24-4659-98ff-0d2c106ae8c6", "name": "Upwork", "type": "light"}]}]}, {"id": "086a9365-1929-4938-b3ff-5641b81def32", "name": "Nutstore", "tags": [], "issuers": [], "match_rules": [{"text": "Nutstore", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nutstore", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d1dbbc95-4fc5-4b12-8462-7d3c99ba6ec1", "name": "Nutstore", "icons": [{"id": "29e3a8fb-3e72-4c57-9b3b-2f93e98ce0e8", "name": "Nutstore", "type": "light"}]}]}, {"id": "089bde79-35b1-45dd-826d-660db6afdb24", "name": "Whois", "tags": [], "issuers": [], "match_rules": [{"text": "Whois", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Whois", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f235e969-15e7-47aa-bb7f-8a60fdd5da7d", "name": "Whois", "icons": [{"id": "67aa2bef-c623-4551-a121-abb6de9ba8c4", "name": "Whois", "type": "light"}]}]}, {"id": "0913d3cb-d3b3-4657-b948-3407855da776", "name": "DataRobot", "tags": [], "issuers": [], "match_rules": [{"text": "DataRobot", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DataRobot", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b3ff4913-a424-4f3b-9b19-8753d2dcf8c8", "name": "DataRobot", "icons": [{"id": "6a602866-1452-4bf4-9dcd-df5e59d8b7ff", "name": "DataRobot", "type": "dark"}, {"id": "9e77709f-d520-4918-afbd-3e281fbfbbea", "name": "DataRobot", "type": "light"}]}]}, {"id": "092783fe-18e3-4cfa-900d-de5c135cafb1", "name": "Dmarket", "tags": [], "issuers": ["Dmarket"], "match_rules": null, "icons_collections": [{"id": "5247c96d-2383-4016-aa5d-119b251f94c3", "name": "Dmarket", "icons": [{"id": "1ae43cd5-1d50-4c13-8752-598ebec77b5c", "name": "Dmarket", "type": "light"}]}]}, {"id": "096b26f8-e5c9-467b-aca7-e2fdb63c7e36", "name": "Jamf", "tags": [], "issuers": ["Jamf+Now", "Jamf Now"], "match_rules": [], "icons_collections": [{"id": "ae357171-6e23-456c-950a-e792b0ea53b3", "name": "Jamf", "icons": [{"id": "ee6d37b9-9a50-491f-bdb6-cae99f76ec1d", "name": "Jamf", "type": "light"}]}]}, {"id": "09b903b7-e980-4099-955e-dcd421232870", "name": "SatoshiTango", "tags": [], "issuers": [], "match_rules": [{"text": "SatoshiTango", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SatoshiTango", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fefa43e1-ce67-49d3-9a20-8c88d5ac5fa5", "name": "SatoshiTango", "icons": [{"id": "984822cb-4c7f-4a39-be4e-79360723e9aa", "name": "SatoshiTango", "type": "light"}]}]}, {"id": "09edfec0-c3cc-4c8b-8135-ac5779708019", "name": "GreenGeeks", "tags": [], "issuers": [], "match_rules": [{"text": "GreenGeeks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GreenGeeks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b5b9eddc-6c44-44db-901e-f2fd5483b7a2", "name": "GreenGeeks", "icons": [{"id": "be4d4ae6-1d51-403b-845b-6ac616262e4e", "name": "GreenGeeks", "type": "light"}]}]}, {"id": "0a48f587-2d81-494a-bcdb-a01569f81453", "name": "SimpleLogin", "tags": [], "issuers": ["SimpleLogin"], "match_rules": null, "icons_collections": [{"id": "2ed9942b-daec-491a-871e-0c01e77e0722", "name": "SimpleLogin", "icons": [{"id": "5db23412-5920-4690-827c-ec97808a7f68", "name": "SimpleLogin", "type": "light"}, {"id": "f942499b-5e7b-46a8-aa94-aa8c500d1bcc", "name": "SimpleLogin", "type": "dark"}]}]}, {"id": "0a534123-ccf1-4948-b85e-414fc8883643", "name": "Mailfence", "tags": [], "issuers": [], "match_rules": [{"text": "Mailfence", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mailfence", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d0dbebe6-c08a-4f80-a83c-4956883d204c", "name": "Mailfence", "icons": [{"id": "e1f37b98-857d-43c2-9739-c12d877cdb25", "name": "Mailfence", "type": "light"}]}]}, {"id": "0a908e25-0591-4ab5-9999-fd4d2ff9dc89", "name": "DMM", "tags": [], "issuers": [], "match_rules": [{"text": "DMM", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DMM", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7256c39b-2d44-46e2-8fe0-3de4edc17dcd", "name": "DMM", "icons": [{"id": "004533a9-e17c-4226-a436-4270ac770d44", "name": "DMM", "type": "dark"}, {"id": "fc8f2ea2-a1a7-40f1-990b-ecab825e4fbc", "name": "DMM", "type": "light"}]}]}, {"id": "0abba2a9-b06f-4bea-8767-74aa8f719147", "name": "CoD Mobile", "tags": ["call of duty", "call", "duty", "activision", "mobile"], "issuers": [], "match_rules": [], "icons_collections": [{"id": "7fda4f3a-b307-47a7-bebe-373eb738785e", "name": "CoD Mobile", "icons": [{"id": "11082d0d-b0d6-49d6-bf6f-e871f8359e5e", "name": "CoD Mobile", "type": "light"}, {"id": "adf4b16b-b64d-489f-a0a4-0d3188dcd768", "name": "CoD Mobile", "type": "dark"}]}]}, {"id": "0afc71a2-f1e0-4ea1-9e1c-05d5fff2a66a", "name": "Masaryk University", "tags": [], "issuers": [], "match_rules": [{"text": "Masaryk University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Masaryk University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "39eebd39-2a8c-46fe-9e5a-1e2217888b0b", "name": "Masaryk University", "icons": [{"id": "ec6eb84d-6649-4445-bb6a-6af58f6e59ea", "name": "Masaryk University", "type": "light"}]}]}, {"id": "0b235bab-68e0-44e8-925f-92ecc3f9af59", "name": "Modrinth", "tags": [], "issuers": ["Modrinth"], "match_rules": null, "icons_collections": [{"id": "c27fa5bf-b460-42f7-af14-914136200c09", "name": "Modrinth", "icons": [{"id": "7293c1bb-b4ac-464d-9ffc-aed8807960cc", "name": "Modrinth", "type": "light"}, {"id": "b7f3992d-960a-4e3c-9b94-ab86b20a5c39", "name": "Modrinth", "type": "dark"}]}]}, {"id": "0c4e2e05-a8dd-405f-9fff-ffbc2b052444", "name": "Onehub", "tags": [], "issuers": [], "match_rules": [{"text": "Onehub", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Onehub", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "68d9c9c8-487e-4496-a40a-46412e6c4187", "name": "Onehub", "icons": [{"id": "f2a7bea4-c073-4ba4-bbb0-fe5c48954d83", "name": "Onehub", "type": "light"}]}]}, {"id": "0c7ffaf6-fa79-47b5-9fb1-1fc4d97541e4", "name": "Cfx.re Community", "tags": [], "issuers": ["Cfx.re Community"], "match_rules": null, "icons_collections": [{"id": "685d98ed-ca33-470c-82b8-6ae671c2ec15", "name": "Cfx.re Community", "icons": [{"id": "2fce5530-de19-4f98-97dd-275e2b6538b2", "name": "Cfx.re Community", "type": "dark"}, {"id": "40b43ca5-da36-41a3-b907-d9125be40c48", "name": "Cfx.re Community", "type": "light"}]}]}, {"id": "0c954246-0285-4e39-aca4-e37bc4df083a", "name": "BookStack", "tags": [], "issuers": ["BookStack"], "match_rules": null, "icons_collections": [{"id": "e65eee11-1129-447d-bfe5-c91512540eaf", "name": "BookStack", "icons": [{"id": "7cbaecfd-e640-437a-8937-d9df89a2cbd0", "name": "BookStack", "type": "light"}]}]}, {"id": "0c9bc1b5-147a-41af-a9ac-68687275a9d7", "name": "Hypixel", "tags": [], "issuers": ["Hypixel - Minecraft Server and Maps"], "match_rules": null, "icons_collections": [{"id": "942fde6e-e260-4c0a-8c60-3ebae7251352", "name": "Hypixel", "icons": [{"id": "b5f63308-ab6b-4287-a881-0cc821a607c2", "name": "Hypixel", "type": "light"}]}]}, {"id": "0d0049fb-3f6b-4f18-8d74-63dcaa928eb8", "name": "McGill University", "tags": [], "issuers": [], "match_rules": [{"text": "McGill University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "McGill University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "04db2fc7-09c8-4b81-a4b5-703a3e0e348c", "name": "McGill University", "icons": [{"id": "bddfc9bf-e8c7-44cd-af53-b7251fcd2e2d", "name": "McGill University", "type": "light"}]}]}, {"id": "0d096e23-0594-47af-abac-51aaae14f19c", "name": "QNAP", "tags": [], "issuers": [], "match_rules": [{"text": "QNAP", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": []}, {"id": "0e0aca8b-0901-4a9f-87ae-655407c6b719", "name": "Scalefusion", "tags": [], "issuers": [], "match_rules": [{"text": "Scalefusion", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Scalefusion", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f627bd28-2647-449e-8c42-2ec569f4f3aa", "name": "Scalefusion", "icons": [{"id": "d43bd133-b639-412c-9b58-13bf0614f931", "name": "Scalefusion", "type": "light"}]}]}, {"id": "0e479fcd-6a38-4431-9605-8a3d8b260e29", "name": "HMRC", "tags": [], "issuers": ["Government Gateway", "HMRC", "GovernmentGateway"], "match_rules": [], "icons_collections": [{"id": "e176c886-93fe-44f9-b6d8-a22bd522a396", "name": "HMRC", "icons": [{"id": "88f3d199-7562-4109-b1b1-381adfc6f08e", "name": "HMRC", "type": "light"}, {"id": "893113d0-e694-4694-b84a-1788aedce842", "name": "HMRC", "type": "dark"}]}]}, {"id": "0e6522dd-eb84-4b58-96d9-de67618f8dd0", "name": "Brigham Young University", "tags": ["byu"], "issuers": [], "match_rules": [{"text": "Brigham Young University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Brigham Young University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f4d27ee1-957f-4820-a58e-3b89db515f01", "name": "Brigham Young University", "icons": [{"id": "9b862654-e6aa-4a8b-8e73-04b921849a85", "name": "Brigham Young University", "type": "dark"}, {"id": "a9fc4d55-e833-4d67-855c-c50c8162d7e7", "name": "Brigham Young University", "type": "light"}]}]}, {"id": "0e79ba5e-36a3-4847-96d5-e1dcfe879874", "name": "FogBugz", "tags": [], "issuers": [], "match_rules": [{"text": "FogBugz", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FogBugz", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f57361ff-f86d-4314-90dd-73a77e975562", "name": "FogBugz", "icons": [{"id": "ca0621d0-fe97-4f2a-94f9-ba000d61305e", "name": "FogBugz", "type": "light"}]}]}, {"id": "0eac11f5-2407-4642-89a0-6c734c164c83", "name": "Teleport", "tags": [], "issuers": [], "match_rules": [{"text": "Teleport", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Teleport", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77b0824c-e6a3-4edc-96dd-80f4bea412b4", "name": "Teleport", "icons": [{"id": "a9bba303-9f7b-455a-ab9d-5767f4dbcca5", "name": "Teleport", "type": "light"}]}]}, {"id": "0eac9826-637b-4e1c-b73e-33b08cb4d8ee", "name": "Nulab", "tags": [], "issuers": [], "match_rules": [{"text": "Nulab", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nulab", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e16d1e0f-e22c-4896-98dc-82c0923a165b", "name": "Nulab", "icons": [{"id": "c70ccd75-d327-4d78-be57-86629ee11765", "name": "Nulab", "type": "light"}]}]}, {"id": "0ed32918-d9c2-43a5-af82-4cbafe16886c", "name": "BayPort Credit Union", "tags": [], "issuers": [], "match_rules": [{"text": "BayPort", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "BayPort", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "403040ec-544e-40b3-a4fd-82c8947b19ec", "name": "BayPort Credit Union", "icons": [{"id": "1426b62d-2632-4073-8a26-097c7dc87950", "name": "BayPort Credit Union", "type": "light"}, {"id": "dd911268-dc1a-4f27-9f09-ae322460bbfd", "name": " BayPort Credit Union", "type": "dark"}]}]}, {"id": "0f41d2cd-c5ad-4503-b0ab-5644e5d570a4", "name": "Paddle", "tags": [], "issuers": [], "match_rules": [{"text": "Paddle", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Paddle", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "492cfdb1-b046-49c4-b8c8-0232fd3f4675", "name": "Paddle", "icons": [{"id": "31945895-f396-4a34-b280-38a3bae31041", "name": "Paddle", "type": "light"}]}]}, {"id": "0f5d448c-117f-4d9c-988b-6a5913a6bf89", "name": "ISL Online", "tags": [], "issuers": [], "match_rules": [{"text": "ISL Online", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ISL Online", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "36ca071a-0422-4157-9c08-78c4c0d86028", "name": "ISL Online", "icons": [{"id": "05f03df2-ad08-4870-8499-9cbe259e5d8f", "name": "ISL Online", "type": "light"}]}]}, {"id": "0f79f016-6bea-42a7-88d3-b7f44b14f02f", "name": "Buddy", "tags": [], "issuers": [], "match_rules": [{"text": "Buddy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Buddy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e0224a23-cdd2-44be-b691-290806b67926", "name": "Buddy", "icons": [{"id": "a8bfd469-72f1-48be-a82b-a8908970d378", "name": "Buddy", "type": "light"}]}]}, {"id": "0f80c3fb-86d2-42cd-8c59-059a35b5083d", "name": "SoFi", "tags": [], "issuers": ["SoFi"], "match_rules": [], "icons_collections": [{"id": "da353611-99cc-41a0-b01c-280843d9c9b8", "name": "SoFi", "icons": [{"id": "59dc5efe-44f9-4726-8ce1-867daac597df", "name": "SoFi", "type": "light"}]}]}, {"id": "0f92d0c5-2b96-4f8e-91ef-9a026e048b80", "name": "TikTok", "tags": [], "issuers": ["TikTok"], "match_rules": [{"text": "TikTok", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "c1478a28-c2a3-4993-be6e-1f826be2d5c9", "name": "TikTok", "icons": [{"id": "870087a4-8947-4dbc-b367-d87d88e1fc4e", "name": "TikTok", "type": "light"}, {"id": "dec15ca7-b8cb-4d14-8404-578047f7f066", "name": "TikTok", "type": "dark"}]}]}, {"id": "0fbf7a9f-f82a-447e-84e1-3d000164798d", "name": "Postmarkapp", "tags": [], "issuers": [], "match_rules": [{"text": "Postmarkapp", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Postmarkapp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "82c1b55f-28e0-4bc8-b225-4029c1a8ef1d", "name": "Postmarkapp", "icons": [{"id": "84ff468a-d423-47bf-ba64-e07d1eac9a6a", "name": "Postmarkapp", "type": "light"}]}]}, {"id": "0fe827e9-5e2f-4aec-8b26-3d7c0cfd80d2", "name": "Solarus", "tags": [], "issuers": [], "match_rules": [{"text": "Solarus", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Solarus", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cf5b2375-7284-43d4-9333-3008b891b9cf", "name": "Solarus", "icons": [{"id": "ebdc9249-a893-469f-89b5-0ca140566c2a", "name": "Solarus", "type": "light"}]}]}, {"id": "103e3001-aece-493d-9f90-9a5ab4520ada", "name": "Masterworks", "tags": [], "issuers": ["Masterworks"], "match_rules": null, "icons_collections": [{"id": "687cb980-6c6f-4e16-94df-6ca45cd71e33", "name": "Masterworks", "icons": [{"id": "87e48ce0-5fb3-4421-8d2e-d68d50c912ef", "name": "Masterworks", "type": "light"}, {"id": "c17f13fc-b10b-4270-94fa-547dc2d0080f", "name": "Masterworks", "type": "dark"}]}]}, {"id": "104c80c0-5ff6-41d9-8c05-76c1860bd36b", "name": "Bethesda", "tags": [], "issuers": ["Bethesda.net"], "match_rules": null, "icons_collections": [{"id": "7e238b3c-9833-4d0b-acc2-36396eccb0fe", "name": "Bethesda.net", "icons": [{"id": "14a364c1-6a5f-4a92-8aa8-b8511443e37d", "name": "Bethesda.net", "type": "dark"}, {"id": "2315091d-354e-4994-97b8-5bfe064722ac", "name": "Bethesda.net", "type": "light"}]}]}, {"id": "10cf2464-641c-4310-8d7e-4ab77e7d0228", "name": "Haru", "tags": ["invest"], "issuers": ["Haruinvest.com"], "match_rules": null, "icons_collections": [{"id": "3440cd67-8d23-4d35-bd85-6ab1e8a6f409", "name": "Haru", "icons": [{"id": "6fd99f85-edb4-4b41-84a8-cb59f10235e2", "name": "Haru", "type": "light"}, {"id": "f77694ff-fdfb-403e-b490-b53884a85ad6", "name": "Haru", "type": "dark"}]}]}, {"id": "111b5db0-2844-40a2-9a76-d65250af89f4", "name": "Practice Better", "tags": [], "issuers": [], "match_rules": [{"text": "Practice Better", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Practice Better", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b0dc695-b65d-4bf0-8b59-a18fe69f5ebd", "name": "Practice Better", "icons": [{"id": "f9e722da-f1f1-4cf6-99c2-45d410325339", "name": "Practice Better", "type": "light"}]}]}, {"id": "112f7052-cdf0-4851-a562-c0754d001e80", "name": "Dwolla", "tags": [], "issuers": [], "match_rules": [{"text": "Dwolla", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Dwolla", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "183c86e4-d062-4afc-89e2-05acaef54ca6", "name": "Dwolla", "icons": [{"id": "c2abfbf6-07ac-4f95-aeb5-e1fb4f58bd0f", "name": "Dwolla", "type": "light"}]}]}, {"id": "1141a948-d87c-43e3-8b21-cc95ca9703e5", "name": "SmartSurvey", "tags": [], "issuers": [], "match_rules": [{"text": "SmartSurvey", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SmartSurvey", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "089d988f-65b4-4acf-a3f7-fc044b7a4181", "name": "SmartSurvey", "icons": [{"id": "51c518a1-04a7-43ab-b986-8abb0d7b0cc9", "name": "SmartSurvey", "type": "light"}]}]}, {"id": "115aaa5c-3867-41b8-b668-b193f795d232", "name": "Hiveon", "tags": [], "issuers": ["HiveOS"], "match_rules": null, "icons_collections": [{"id": "1e5c1655-57e3-44f3-bcf6-ef46b3c699c7", "name": "Hiveon", "icons": [{"id": "a73cf5a1-e3d0-4fc5-a7f2-b231814fa663", "name": "Hiveon", "type": "light"}]}]}, {"id": "1174fb7d-cb22-4855-b454-d1d25acb3753", "name": "Proton", "tags": [], "issuers": ["ProtonMail", "Proton"], "match_rules": [], "icons_collections": [{"id": "114d2106-4e3d-4ae4-b559-dc598f2fda3c", "name": "Proton", "icons": [{"id": "7ce2cda7-24cc-4bd1-b210-0b372b90f3e7", "name": "Proton", "type": "light"}]}]}, {"id": "1186b6ab-e0c5-4a17-a27e-d9727b7688b0", "name": "Bitsgap", "tags": [], "issuers": [], "match_rules": [{"text": "Bitsgap", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitsgap", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2a7a6e8f-6014-40d8-97d9-673e2ffa7328", "name": "Bitsgap", "icons": [{"id": "ab0af82b-0040-4216-9340-2d92fbb771bd", "name": "Bitsgap", "type": "light"}]}]}, {"id": "11cdf742-25e2-4915-bd71-4f7c11272b27", "name": "Short.io", "tags": [], "issuers": ["Short.io"], "match_rules": null, "icons_collections": [{"id": "fc4833dd-7151-4ab4-a9ce-aa45de5b710a", "name": "Short.io", "icons": [{"id": "126d05d4-6ba8-40ed-be8e-8478a370656b", "name": "Short.io", "type": "light"}]}]}, {"id": "121acf58-0e10-4e0d-a967-2dad5f8e5929", "name": "UptimeRobot", "tags": [], "issuers": ["UptimeRobot"], "match_rules": [], "icons_collections": [{"id": "cb646018-2b9c-471c-b033-cc932a767520", "name": "UptimeRobot", "icons": [{"id": "45f36783-5584-4950-af0d-7b321a2171c7", "name": "UptimeRobot", "type": "light"}]}]}, {"id": "12af652e-0c2f-48c8-8ebd-dd8b0fe60f83", "name": "Phrase", "tags": [], "issuers": [], "match_rules": [{"text": "Phrase", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Phrase", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9ef0672-faea-4223-a8cb-69b4718330d7", "name": "Phrase", "icons": [{"id": "32f4ae9e-de65-4085-beba-3a91609c1800", "name": "phrase", "type": "dark"}, {"id": "c99fb8a9-9704-4c31-908d-3e354aad5f6d", "name": "Phrase", "type": "light"}]}]}, {"id": "12bcda3c-a8d1-493f-a529-0c3708fbafdd", "name": "GradeSteps", "tags": [], "issuers": [], "match_rules": [{"text": "GradeSteps", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GradeSteps", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c1ff2651-dffc-42aa-8342-a78809e6020c", "name": "GradeSteps", "icons": [{"id": "491ab257-375a-45d8-a775-43577e6cd546", "name": "GradeSteps", "type": "light"}]}]}, {"id": "131392a5-c598-4a0e-bb80-4a0b2a724ae7", "name": "Rebrandly", "tags": [], "issuers": [], "match_rules": [{"text": "Rebrandly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rebrandly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "26f2c4c6-39d2-4f8a-8d61-7f2e39424f4e", "name": "Rebrandly", "icons": [{"id": "3172d1e9-f731-4513-be60-5d1f816b37f1", "name": "Rebrandly", "type": "light"}]}]}, {"id": "1338c029-1aa4-4a61-a1be-57c1c393f898", "name": "Contentful", "tags": [], "issuers": [], "match_rules": [{"text": "Contentful", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Contentful", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1eaad0b3-4079-4157-b3be-90124cc6feaf", "name": "Contentful", "icons": [{"id": "7cc870f6-9975-48d6-b261-8c667f309cb1", "name": "Contentful", "type": "light"}]}]}, {"id": "1356db6e-a3f7-436a-8584-be00a7d6ff43", "name": "Brex", "tags": [], "issuers": [], "match_rules": [{"text": "Brex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Brex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "25855b19-bda8-4875-b182-3960456f16a7", "name": "Brex", "icons": [{"id": "9c32899b-7844-425b-afd2-d4d81a9d83e7", "name": "Brex", "type": "dark"}, {"id": "ca8c4744-6fab-4fc3-9e53-ae492e8aeb09", "name": "Brex", "type": "light"}]}]}, {"id": "1366f931-a503-46cc-9e86-3c1b2528b548", "name": "Firmex VDR", "tags": [], "issuers": [], "match_rules": [{"text": "Firmex VDR", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Firmex VDR", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "391201f1-7d01-4c5c-9523-2c8e54e4cea2", "name": "Firmex VDR", "icons": [{"id": "9c31033b-6317-4759-9e4f-400076fe6e1f", "name": "Firmex VDR", "type": "light"}]}]}, {"id": "137459fd-0f05-489a-95af-fd0245c3fa0e", "name": "Bitpay", "tags": [], "issuers": [], "match_rules": [{"text": "[bitpay]", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d85626dd-c037-44cf-b841-425af012457c", "name": "Bitpay", "icons": [{"id": "d9b48a25-0686-4b04-945e-8348be16706e", "name": "Bitpay", "type": "light"}]}]}, {"id": "13cd6950-fea9-478d-9204-6ce9883bbdd1", "name": "NairaEx", "tags": [], "issuers": [], "match_rules": [{"text": "NairaEx", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NairaEx", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a575f293-030a-47e9-a813-ee011f85689e", "name": "NairaEx", "icons": [{"id": "279b62a2-792c-400d-8501-be206d21912b", "name": "NairaEx", "type": "light"}]}]}, {"id": "142f6389-d0de-4bf6-bd90-b9171e66561d", "name": "Verpex", "tags": [], "issuers": [], "match_rules": [{"text": "Verpex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Verpex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "185f645a-1743-4dc5-b2e5-bf5f5d114186", "name": "Verpex", "icons": [{"id": "1f7ece1c-aeec-4151-a41d-096d7e80e83b", "name": "Verpex", "type": "light"}, {"id": "e0ca9fee-0a71-49ac-9347-a0e40fc3d388", "name": "Verpex", "type": "dark"}]}]}, {"id": "14426ff2-a34b-45c7-b849-4e89ef1ea285", "name": "No Starch Press", "tags": [], "issuers": [], "match_rules": [{"text": "No Starch Press", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "No Starch Press", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "131acd15-d175-4c4f-a3cf-cecc9a3a7cf2", "name": "No Starch Press", "icons": [{"id": "60388bbb-5823-4fda-a194-3841f9108a61", "name": "No Starch Press", "type": "light"}, {"id": "aaabfe8d-9a7d-4729-995f-6fe7aa7421fe", "name": "No Starch Press", "type": "dark"}]}]}, {"id": "145fcf19-0226-4ca1-8457-69d778a3808f", "name": "Coinigy", "tags": [], "issuers": [], "match_rules": [{"text": "Coinigy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinigy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0059e395-f954-47a0-a8e4-4bc800a4a0f8", "name": "Coinigy", "icons": [{"id": "40cf688b-4a7a-4fd3-ab79-6df4cf028866", "name": "Coinigy", "type": "light"}]}]}, {"id": "148aee0b-5b58-4a72-a9d2-e93184b6e398", "name": "Karlsruher Institut f\u00fcr Technologie", "tags": [], "issuers": [], "match_rules": [{"text": "Karlsruher Institut f\u00fcr Technologie", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Karlsruher Institut f\u00fcr Technologie", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a038b1b2-ff3b-4dfa-9ca2-11fb7952a39d", "name": "Karlsruher Institut f\u00fcr Technologie", "icons": [{"id": "42225520-b48a-429a-954c-fcf55fcd044e", "name": "Karlsruher Institut f\u00fcr Technologie", "type": "dark"}, {"id": "fae8977f-4127-4df7-9608-e6a8a0a82afa", "name": "Karlsruher Institut f\u00fcr Technologie", "type": "light"}]}]}, {"id": "14b0712a-b660-4550-ac94-bc0ea75e3228", "name": "Slack", "tags": [], "issuers": ["Slack"], "match_rules": [], "icons_collections": [{"id": "dc0d1bf9-dc12-4936-8441-cd54f433be09", "name": "Slack", "icons": [{"id": "6205c83b-4c99-419c-a3db-8a19aec7798c", "name": "Slack", "type": "light"}]}]}, {"id": "14bf925d-a0e8-45d0-9ee2-bff317c244e4", "name": "Coinjar", "tags": [], "issuers": [], "match_rules": [{"text": "Coinjar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinjar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2752300d-8fda-423a-a5a9-cda0690ddfa1", "name": "Coinjar", "icons": [{"id": "2992dfd0-3daa-43d8-97a6-d3ed2d58b3c8", "name": "Coinjar", "type": "dark"}, {"id": "2cc5414f-e85a-4d2f-a8bb-1bfcc1aa134b", "name": "Coinjar", "type": "light"}]}]}, {"id": "14c23fd3-eeb8-424c-a236-803633435224", "name": "ODBeleven", "tags": [], "issuers": [], "match_rules": [{"text": "ODBeleven", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ODBeleven", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eef7661d-c1a3-4b1f-b137-119ac9ec541d", "name": "ODBeleven", "icons": [{"id": "67be0784-57eb-42b7-b884-1e4ae8208e34", "name": "ODBeleven", "type": "light"}]}]}, {"id": "14c8dd5d-8982-409d-a2e2-dab2983eb020", "name": "Fauna", "tags": [], "issuers": [], "match_rules": [{"text": "Fauna", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fauna", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "57883bd7-ec1c-458f-aeb8-5a8d52595b75", "name": "Fauna", "icons": [{"id": "5300378e-b9be-446c-a7d9-995fe12e39d0", "name": "Fauna", "type": "light"}, {"id": "855cb28d-dc90-4a53-ac76-26eb7ec2aa6d", "name": "Fauna", "type": "dark"}]}]}, {"id": "14ddda49-0a2d-46cf-b46e-bf236a355ee1", "name": "Favro", "tags": [], "issuers": [], "match_rules": [{"text": "Favro", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Favro", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a8d8d8b5-ab15-4531-bb19-9d5ea7100cb9", "name": "Favro", "icons": [{"id": "3240fb2d-1dbd-4906-9e57-e10490cf23fa", "name": "Favro", "type": "light"}]}]}, {"id": "14e45151-0724-48c1-8d71-f262202307c7", "name": "ISC2", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "e80af02c-1616-42f1-ac93-89d8aaec29c8", "name": "ISC2", "icons": [{"id": "461ca448-65f2-4021-95ee-a84a71e353ca", "name": "isc2", "type": "dark"}, {"id": "e6c5c5e4-29d4-4af3-9d9c-4f29762e68e5", "name": "(ISC)2", "type": "light"}]}]}, {"id": "15252c33-7103-4761-8e35-ed1ecd201a43", "name": "Notesnook", "tags": [], "issuers": ["Notesnook"], "match_rules": null, "icons_collections": [{"id": "a6be73b0-61b7-4484-bb66-ef5cdff5e99d", "name": "Notesnook", "icons": [{"id": "3133bbe2-1604-4f4f-998b-0bbe5cdc01a9", "name": "Notesnook", "type": "light"}]}]}, {"id": "15733414-0160-4dd9-9fc1-187369cbb288", "name": "Above.com", "tags": [], "issuers": [], "match_rules": [{"text": "Above", "field": "issuer", "matcher": "starts_with", "ignore_case": true}, {"text": "Above", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "6d0c4064-6096-46bb-92fd-584ecb64733c", "name": "Above.com", "icons": [{"id": "e2d986d3-deb5-40dc-b089-e025f2dadd07", "name": "Above", "type": "light"}]}]}, {"id": "15abc44c-e519-488b-98f2-3a75aaf270af", "name": "Reddit", "tags": [], "issuers": ["Reddit"], "match_rules": [], "icons_collections": [{"id": "f0fbc3b5-3725-494f-8ebc-4f3d80b2fcfe", "name": "Reddit", "icons": [{"id": "524daa7f-d8cc-476a-bcdc-2da5955348ad", "name": "Reddit", "type": "light"}]}]}, {"id": "15aecbe2-7315-4fc1-ab7c-14c49b45dac0", "name": "Tori", "tags": [], "issuers": [], "match_rules": [{"text": "Tori", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tori", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "70c730a8-79c7-41a3-8444-ad2eb1b9192c", "name": "Tori", "icons": [{"id": "af196ff1-0940-49dd-b037-6c30cc626f7f", "name": "Tori", "type": "light"}]}]}, {"id": "15b2d968-b472-483d-93e4-35891557e215", "name": "Scryfall", "tags": [], "issuers": [], "match_rules": [{"text": "Scryfall", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Scryfall", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4d101f07-8841-4db1-9ef3-43b705b2eab0", "name": "Scryfall", "icons": [{"id": "feb2e13f-9cde-4dd0-b7f9-bd368c1f5631", "name": "Scryfall", "type": "light"}]}]}, {"id": "15e30efe-aeb1-441a-916c-ae4eb1787f27", "name": "Cryptology", "tags": [], "issuers": [], "match_rules": [{"text": "cryptology.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "1ff6314f-90cb-40d6-ba16-b0ab8746bf5a", "name": "Cryptology", "icons": [{"id": "020bdb1a-b205-491b-b74b-42ea0c6620b9", "name": "Cryptology", "type": "dark"}, {"id": "c9499b98-a821-4557-ba7e-ea34ecf9b24e", "name": "Cryptology", "type": "light"}]}]}, {"id": "15fc4637-25c0-416e-9fcc-afe99dab8abe", "name": "Drupal", "tags": [], "issuers": ["drupal"], "match_rules": [], "icons_collections": [{"id": "07f84ab8-8a93-4f0b-bc3b-00c20a3dfec9", "name": "Drupal", "icons": [{"id": "ca2d5840-490c-4338-b547-9cecaa45aea9", "name": "Drupal", "type": "light"}]}]}, {"id": "16006518-3005-4f92-8232-d5b69a777a8f", "name": "Web Hosting Canada", "tags": [], "issuers": [], "match_rules": [{"text": "Web Hosting Canada", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Web Hosting Canada", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "30df36aa-2de4-45f8-9b6a-a83efa91838c", "name": "Web Hosting Canada", "icons": [{"id": "856d5ac7-c2e7-42b4-9d14-3b1d6cf7159f", "name": "Web Hosting Canada", "type": "light"}]}]}, {"id": "162b6a67-dc0a-4662-8fed-dca5c5de8411", "name": "solo.to", "tags": [], "issuers": ["solo.to"], "match_rules": null, "icons_collections": [{"id": "c4e8280e-75c9-4742-8fbe-59406ed093ea", "name": "solo.to", "icons": [{"id": "e35c0fd2-dd6b-4fdc-b1b5-861361fb78c9", "name": "solo.to", "type": "light"}]}]}, {"id": "165c70a7-d28c-4b7f-a92d-eab8e66dfcb5", "name": "SouthXchange", "tags": [], "issuers": [], "match_rules": [{"text": "SouthXchange", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SouthXchange", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5226962c-4f84-469d-9d64-1a0a466c3c5e", "name": "SouthXchange", "icons": [{"id": "555a55c4-a5c4-496f-91ec-738a46f70801", "name": "SouthXchange", "type": "dark"}, {"id": "f981a084-d6c0-4eb1-8acf-b47e0b13b6fe", "name": "SouthXchange", "type": "light"}]}]}, {"id": "16b5168c-d5bf-468a-b795-3a1b87570445", "name": "Monday.com", "tags": [], "issuers": [], "match_rules": [{"text": "Monday.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Monday.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b02d2f47-cfd4-40b8-af98-0b9838ff46a5", "name": "Monday.com", "icons": [{"id": "36a7a16f-04bb-4325-addc-47fd825d0043", "name": "Monday.com", "type": "light"}]}]}, {"id": "16da29bf-6b58-4260-9558-e150ed65ecc7", "name": "NCSOFT", "tags": [], "issuers": [], "match_rules": [{"text": "NCSOFT", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "NCSOFT", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bc8676fa-016b-470b-9266-50d107b4c943", "name": "NCSOFT", "icons": [{"id": "b7c57bb9-8fcf-4fe5-9128-cf74bb1f1ced", "name": "NCSOFT", "type": "dark"}, {"id": "ccf0caec-ba69-48ca-a7f0-57f670906da0", "name": "NCSOFT", "type": "light"}]}]}, {"id": "16e92d20-b1b4-4e23-ba0a-224d79b0a02a", "name": "CurseForge", "tags": [], "issuers": ["CurseForge"], "match_rules": null, "icons_collections": [{"id": "4f9313c6-fab1-48ef-a642-4fb13007c82c", "name": "CurseForge", "icons": [{"id": "da898e41-a0cf-432a-9c90-dd256d040a83", "name": "CurseForge", "type": "light"}]}]}, {"id": "170388d7-479c-40d6-b624-b72d22ecf552", "name": "Kayako", "tags": [], "issuers": [], "match_rules": [{"text": "kayako.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f0359e70-4297-4693-aa8d-ba5fca0668e8", "name": "Kayako", "icons": [{"id": "ab46e929-5aeb-4fa5-a310-110407921d0c", "name": "Kayako", "type": "light"}]}]}, {"id": "1716d6a3-743f-4e7b-a810-201b795458fd", "name": "Pingvin Share", "tags": [], "issuers": ["pingvin-share"], "match_rules": null, "icons_collections": [{"id": "780f5d04-4146-4a85-b093-74b7ca940c16", "name": "Pingvin Share", "icons": [{"id": "cf2fa706-8301-4ca5-babf-3c259a7778f8", "name": "Pingvin Share", "type": "light"}]}]}, {"id": "173fbdfc-ef75-401a-811d-068de491b2bf", "name": "Surety", "tags": [], "issuers": [], "match_rules": [{"text": "Surety", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Surety", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "19f412ec-f01a-4976-955b-7f0d5af83c07", "name": "Surety", "icons": [{"id": "e2ef1960-9a8d-468c-a2ec-867f764551b6", "name": "Surety", "type": "light"}]}]}, {"id": "17c5852f-11aa-4c0c-bb5a-441d62ef3a86", "name": "Secure Access Washington", "tags": ["saw"], "issuers": [], "match_rules": [{"text": "Secure Access Washington", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Secure Access Washington", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Secure(\\+|\\s|-|_)Access(\\+|\\s|-|_)Washington", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Secure(\\+|\\s|-|_)Access(\\+|\\s|-|_)Washington", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "5fa92902-34fd-4f0a-8361-93790daa1bed", "name": "Secure Access Washington", "icons": [{"id": "e2d55d9a-03be-4d48-84e1-9553b909bc56", "name": "Secure Access Washington", "type": "light"}]}]}, {"id": "17d05262-546d-407b-a481-c130535b3a73", "name": "myPay", "tags": [], "issuers": [], "match_rules": [{"text": "myPay", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "51cddf69-c85c-4a24-9790-209680d296e3", "name": "myPay", "icons": [{"id": "1a121cc6-c66a-4db7-9ca5-721acc57ac2b", "name": "myPay", "type": "light"}]}]}, {"id": "180c5928-9206-4984-92cc-72b136601b7d", "name": "Mercado Bitcoin", "tags": [], "issuers": [], "match_rules": [{"text": "Mercado Bitcoin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mercado Bitcoin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0b187fe8-13a2-4cec-a254-c2a807dd40b4", "name": "Mercado Bitcoin", "icons": [{"id": "b03c312b-ea89-4dd4-aba2-0138e5bec359", "name": "Mercado Bitcoin", "type": "light"}]}]}, {"id": "1818b58d-1a0e-48bc-b122-33cb8f48f248", "name": "Packagist.com", "tags": [], "issuers": ["Private Packagist"], "match_rules": [{"text": "Packagist", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Packagist", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "53cbaf51-a4b3-45f9-832e-31ec7e38ee91", "name": "Packagist.com", "icons": [{"id": "e6585499-51bb-4d02-a6aa-c16510b7388f", "name": "Packagist", "type": "light"}]}]}, {"id": "181ad340-0b3e-4f27-a472-d9ad3fe0f10f", "name": "RestoreCord", "tags": [], "issuers": [], "match_rules": [{"text": "RestoreCord", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RestoreCord", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2c349a9c-aeb3-4ad4-94e2-682c3cfbd7d8", "name": "RestoreCord", "icons": [{"id": "3a045ca2-3f9d-46c8-87e2-5e3cf35a0e61", "name": "RestoreCord", "type": "light"}]}]}, {"id": "18242dd5-ad83-4840-b7d3-2aa84b988e94", "name": "Sketch", "tags": [], "issuers": [], "match_rules": [{"text": "Sketch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sketch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ce8f1736-65a6-42e1-a4d5-48a90cbfa032", "name": "Sketch", "icons": [{"id": "32552dc4-bf8a-4455-88b3-cb43434dac38", "name": "Sketch", "type": "light"}, {"id": "b2eccb2c-c2c0-4de5-aa04-7b53874b42f7", "name": "Sketch", "type": "dark"}]}]}, {"id": "18393734-a876-41c2-8cae-d4b86b955587", "name": "Rackspace", "tags": [], "issuers": [], "match_rules": [{"text": "Rackspace", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rackspace", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cc566ef8-f92b-47d7-99a9-a280ecd3cfa0", "name": "Rackspace", "icons": [{"id": "b3137c87-cd27-47b4-a432-3fffb3245668", "name": "Rackspace", "type": "light"}]}]}, {"id": "184d3779-9204-4c22-bd8c-b1f681350d1e", "name": "Launchpad", "tags": [], "issuers": [], "match_rules": [{"text": "Launchpad", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Launchpad", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1df3a7fa-ac7d-42ba-94f7-118a01e40d26", "name": "Launchpad", "icons": [{"id": "4d79f159-5b65-431f-a134-51ba54722b68", "name": "Launchpad", "type": "light"}]}]}, {"id": "1889446c-21ae-40ea-a6c2-639368be9732", "name": "Imperva", "tags": [], "issuers": [], "match_rules": [{"text": "Imperva", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Imperva", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eeec2c17-c57d-4b6d-9d71-e8790b04bb2e", "name": "Imperva", "icons": [{"id": "4e634655-4743-4926-a156-37e89cc40428", "name": "Imperva", "type": "dark"}, {"id": "fab99bc2-f24d-4248-9395-cee4e32d1a92", "name": "Imperva", "type": "light"}]}]}, {"id": "19171565-46a3-43eb-ad50-eeb46eaa229e", "name": "Polytoria", "tags": [], "issuers": [], "match_rules": [{"text": "Polytoria", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Polytoria", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "160ddb1a-cbf2-4350-b724-4a67c72a855d", "name": "Polytoria", "icons": [{"id": "7dcf4941-c203-481f-9423-5cbed8f4aa24", "name": "Polytoria", "type": "light"}]}]}, {"id": "19a5f44c-bc4a-4f80-9903-2c61668c5a0a", "name": "ONET Konto", "tags": [], "issuers": ["OKONTO"], "match_rules": [], "icons_collections": [{"id": "2a35dfe5-89b6-4607-ac2e-2583ddcd7978", "name": "ONET Konto", "icons": [{"id": "105b53cf-ac4e-4f2a-ae8f-e9d48770fbaf", "name": "ONET Konto", "type": "light"}, {"id": "affef866-7c84-4bc1-98a4-04954d057917", "name": "ONET Konto", "type": "dark"}]}]}, {"id": "19cac7cf-5548-4869-a33f-6a13a4ae5e6f", "name": "NiceHash Login", "tags": [], "issuers": ["NiceHash - login"], "match_rules": [], "icons_collections": [{"id": "c8019718-56b2-406f-bf21-2addda6b21fd", "name": "NiceHash", "icons": [{"id": "cb0edba6-9027-49cc-b99d-1b31041e5073", "name": "NiceHash Buying", "type": "light"}]}]}, {"id": "19fa4443-f8c0-480d-a6fb-a4af7e259d5e", "name": "ETH Z\u00fcrich", "tags": [], "issuers": [], "match_rules": [{"text": "ethz", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "ethz", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3686d8ed-ce4b-464a-afc2-5451b18312c9", "name": "ETH Z\u00fcrich", "icons": [{"id": "c6ef9fd0-403d-4075-b5ac-fd63c92df4e0", "name": "ETH Z\u00fcrich", "type": "dark"}, {"id": "e075f736-81a9-4d1a-ab42-7e92e541bfe7", "name": "ETH Z\u00fcrich", "type": "light"}]}]}, {"id": "1a113323-cc17-4184-8816-b687ea65b0b7", "name": "CoinPayU", "tags": [], "issuers": [], "match_rules": [{"text": "CoinPayU", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinPayU", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db199ebc-bac9-4a00-bfad-5c4a017c853b", "name": "CoinPayU", "icons": [{"id": "b63cde23-cb2c-43ae-b4b3-309c40a517a0", "name": "CoinPayU", "type": "light"}]}]}, {"id": "1a2bd621-38fe-4143-94b7-516a4bceca9c", "name": "FAX.PLUS", "tags": [], "issuers": [], "match_rules": [{"text": "FAX.PLUS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FAX.PLUS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6da226a8-f1a7-47f3-93a9-89f1689c2533", "name": "FAX.PLUS", "icons": [{"id": "7a3c500a-fe19-4053-bbfd-d68353a9661c", "name": "FAX.PLUS", "type": "light"}]}]}, {"id": "1a433d91-f6cc-4347-b4eb-29e98bd193ba", "name": "Campaign Monitor", "tags": [], "issuers": [], "match_rules": [{"text": "Campaign Monitor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Campaign Monitor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "682aea05-0544-473d-a5c2-9b4764348c2d", "name": "Campaign Monitor", "icons": [{"id": "99c1b634-614c-4504-b20f-9c8ef8ee2a92", "name": "Campaign Monitor", "type": "light"}]}]}, {"id": "1a8546ad-903d-4f3d-9589-f7282d426007", "name": "ID.me", "tags": [], "issuers": ["ID.me"], "match_rules": [], "icons_collections": [{"id": "edb6040c-ffbe-441f-80c1-95fc09601b4a", "name": "ID.me", "icons": [{"id": "54c8df44-7f26-4d25-bbed-183b29798c9e", "name": "ID.me", "type": "light"}, {"id": "f72024c7-3184-4057-8a1d-b6ebc68368e5", "name": "ID.me", "type": "dark"}]}]}, {"id": "1aedafd0-b21e-4220-a276-d3001bfa9702", "name": "Humble Bundle", "tags": [], "issuers": ["HumbleBundle"], "match_rules": [], "icons_collections": [{"id": "4112e85e-09cb-4e9f-960b-2e2c00b8929e", "name": "Humble Bundle", "icons": [{"id": "613d502e-0714-4c9a-9996-25f834b93363", "name": "Humble Bundle", "type": "light"}]}]}, {"id": "1b19be9e-fec0-4c64-929b-01fcc0172b74", "name": "MxToolbox", "tags": [], "issuers": [], "match_rules": [{"text": "MxToolbox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "MxToolbox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4bebe475-8430-476b-920f-3fd94f859382", "name": "MxToolbox", "icons": [{"id": "524918fc-d1a4-4028-bbd2-7ccf18a1e1f6", "name": "MxToolbox", "type": "light"}]}]}, {"id": "1b35b8ee-de08-4623-8be9-9a52d3606a08", "name": "Activision", "tags": [], "issuers": ["Activision"], "match_rules": [], "icons_collections": [{"id": "d4fef7d5-65cf-4156-bc04-98f9767b78bf", "name": "Activision", "icons": [{"id": "41580a4f-51e5-48b6-8dc2-eff7234347e2", "name": "Activision", "type": "dark"}, {"id": "fd71947e-145f-4a7b-98eb-f6a7b04ca516", "name": "Activision", "type": "light"}]}]}, {"id": "1b404cba-9661-42e6-bae4-1420c4ffe855", "name": "Domeneshop", "tags": [], "issuers": [], "match_rules": [{"text": "Domeneshop", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Domeneshop", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "46a1d96b-ac97-4fa8-926c-5b2641e06b5e", "name": "Domeneshop", "icons": [{"id": "4c2a16b4-6964-4dc4-9961-2ddd7405374d", "name": "Domeneshop", "type": "light"}]}]}, {"id": "1b4c2400-7366-4b33-9419-440e188a6748", "name": "Private Internet Access", "tags": [], "issuers": ["Private Internet Access"], "match_rules": null, "icons_collections": [{"id": "d3262b45-4011-46ce-9a3d-fce9fccf3d79", "name": "Private Internet Access", "icons": [{"id": "3c9d2fb2-c83a-4278-83bf-e9ca2cd216c4", "name": "Private Internet Access", "type": "light"}]}]}, {"id": "1b58f132-4f96-4e3d-80c7-b087f367cea1", "name": "Files.com", "tags": [], "issuers": [], "match_rules": [{"text": "Files.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Files.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "517d055e-d2eb-40dc-be4b-5777e0e08f55", "name": "Files.com", "icons": [{"id": "b7b49594-0c33-4793-9383-c12aed545250", "name": "Files.com", "type": "light"}]}]}, {"id": "1baa0fab-1a1a-495b-82ec-a2aae7de4c04", "name": "cyon", "tags": [], "issuers": [], "match_rules": [{"text": "cyon", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "cyon", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a54d0235-47bd-4bf5-b295-9cd86dd7fb4a", "name": "cyon", "icons": [{"id": "c2426fec-a933-4fc0-a705-82a43a48a1b7", "name": "cyon", "type": "light"}]}]}, {"id": "1bc36494-7dff-4efc-9b76-f6006dbbaffe", "name": "KnownHost", "tags": [], "issuers": [], "match_rules": [{"text": "KnownHost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "KnownHost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "150fcae8-49ef-4595-a855-bbd6b2c1db91", "name": "KnownHost", "icons": [{"id": "4b55dde4-abef-4afb-a89e-5cb1d9ffd4a4", "name": "KnownHost", "type": "light"}]}]}, {"id": "1bc47966-4272-4ef2-bfd2-4f619070343f", "name": "Northwestern Mutual", "tags": [], "issuers": [], "match_rules": [{"text": "Northwestern Mutual", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Northwestern Mutual", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d1bad917-1fc3-4c34-8cf7-8089143d8dc4", "name": "Northwestern Mutual", "icons": [{"id": "307546e0-f7c7-4b63-8f8c-e047578ca15a", "name": "NorthwesternMutual", "type": "dark"}, {"id": "a9d3d42e-2083-4146-a40c-750b5df77cfc", "name": "Northwestern Mutual", "type": "light"}]}]}, {"id": "1c4c489e-e743-4e71-a956-b353a70a8245", "name": "Prusa", "tags": [], "issuers": ["Prusa"], "match_rules": null, "icons_collections": [{"id": "c595ed6b-e331-4139-9183-49d1353635a4", "name": "Prusa", "icons": [{"id": "50e6d896-0dec-4959-b8fe-d1dd5779ee45", "name": "Prusa", "type": "dark"}, {"id": "67e77e4a-fe86-4608-a3d8-679d9bf0c720", "name": "Prusa", "type": "light"}]}]}, {"id": "1c6ef27d-7d4b-4827-9d8f-8aecce460008", "name": "Docker", "tags": [], "issuers": ["hub.docker.com"], "match_rules": [], "icons_collections": [{"id": "8d3b0a32-4a3e-445c-b1c3-0529bde24aa5", "name": "Docker", "icons": [{"id": "5e5e37d9-3b55-4eb8-9c92-f2cf71910056", "name": "Docker", "type": "light"}]}]}, {"id": "1cb281f3-095e-419d-a4c9-a48923d05e72", "name": "my529", "tags": [], "issuers": [], "match_rules": [{"text": "my529.org", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "a3db825d-b56e-42da-82b4-33d75214c472", "name": "my529", "icons": [{"id": "054e4b79-73b1-4187-9d5a-52cc2909e689", "name": "my529", "type": "dark"}, {"id": "eb623ea2-63fd-43e9-99b7-d516a1c41b03", "name": "my529", "type": "light"}]}]}, {"id": "1cb370b8-3681-4d7a-b43b-0b3a3d2cb132", "name": "Independer", "tags": [], "issuers": [], "match_rules": [{"text": "Independer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Independer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b7852ac0-b4ed-4873-b1e0-5595092a2d9c", "name": "Independer", "icons": [{"id": "5259ca63-4322-47f7-9669-9610055eedef", "name": "Independer", "type": "light"}]}]}, {"id": "1cfba37c-40bc-4adf-a38a-7eb89848a1f0", "name": "Faceit", "tags": [], "issuers": [], "match_rules": [{"text": "Faceit", "field": "label", "matcher": "equals", "ignore_case": true}], "icons_collections": [{"id": "418660a6-21da-4d5a-8d25-ac5f98938236", "name": "Faceit", "icons": [{"id": "a22ec51f-6c1f-4a29-ad1d-ad677603bb5e", "name": "Faceit", "type": "light"}]}]}, {"id": "1d1285f4-ea50-46ab-a490-33bb9380e752", "name": "SelfWealth", "tags": [], "issuers": [], "match_rules": [{"text": "SelfWealth", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SelfWealth", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "64dba057-d740-49b1-9688-5be5aac2f720", "name": "SelfWealth", "icons": [{"id": "418c0a36-70bd-4f1d-b3a4-c8ebfa178479", "name": "SelfWealth", "type": "light"}]}]}, {"id": "1d3774aa-bd1a-4d57-b453-5ef78943233b", "name": "Arbeitsagentur", "tags": [], "issuers": ["arbeitsagentur.de"], "match_rules": [], "icons_collections": [{"id": "323f26e2-52a2-438d-89c7-8318133499bb", "name": "Arbeitsagentur", "icons": [{"id": "23cd1dd0-370c-4f06-a755-d61ddfd026e3", "name": "Arbeitsagentur", "type": "light"}, {"id": "97715b99-922d-4b4d-be64-d1cf334ce9e3", "name": "Arbeitsagentur", "type": "dark"}]}]}, {"id": "1d62dda1-9ea0-4b58-b99d-e626340f02f6", "name": "Posteo", "tags": [], "issuers": [], "match_rules": [{"text": "Posteo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Posteo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2921f379-9b35-492d-8ed3-fdfeb2ca75bf", "name": "Posteo", "icons": [{"id": "95f3b403-d010-44fc-abcf-5f08d97718db", "name": "Posteo", "type": "light"}]}]}, {"id": "1d6a7518-af3a-4436-82c8-095ff9b1be13", "name": "Esri", "tags": [], "issuers": [], "match_rules": [{"text": "Esri", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Esri", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "41198b5f-6773-4a9f-88e1-98f254158792", "name": "Esri", "icons": [{"id": "194d982b-7482-4221-92aa-54f5c342388f", "name": "Esri", "type": "dark"}, {"id": "6f3331b6-36af-46d8-af49-99535736995e", "name": "Esri", "type": "light"}]}]}, {"id": "1d8ff8e6-0148-49b0-b0f7-20669b813c13", "name": "Earth Class Mail", "tags": [], "issuers": [], "match_rules": [{"text": "Earth Class Mail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Earth Class Mail", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f46f357a-272f-4467-8c2b-a49f99ce22dc", "name": "Earth Class Mail", "icons": [{"id": "211d58da-4685-4dba-bb5e-6beec0de7a59", "name": "Earth Class Mail", "type": "dark"}, {"id": "8d8646de-a30a-42ba-8958-4bc9306e4161", "name": "Earth Class Mail", "type": "light"}]}]}, {"id": "1dd3612b-ba8d-43d9-987e-461f1f3f6d51", "name": "iLovePDF", "tags": [], "issuers": ["iLovePDF"], "match_rules": null, "icons_collections": [{"id": "0e2c86e0-1815-4c89-9df6-c145364127de", "name": "iLovePDF", "icons": [{"id": "922a071b-3fb5-46c2-b98e-e2857a5cdd52", "name": "iLovePDF", "type": "light"}]}]}, {"id": "1e62a22d-11e6-4eba-be19-b5c43637ff0d", "name": "Weclapp", "tags": [], "issuers": [], "match_rules": [{"text": "Weclapp", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Weclapp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "245252f6-77b2-46f6-a4ab-74298597f300", "name": "Weclapp", "icons": [{"id": "ae485114-6084-4169-8225-c84565c98e2c", "name": "Weclapp", "type": "light"}]}]}, {"id": "1e95b431-48b1-469a-b961-0f97d22967af", "name": "Grist", "tags": [], "issuers": ["Grist"], "match_rules": null, "icons_collections": [{"id": "7a863a30-a3dc-4e46-9771-cd7ad5a4fc81", "name": "Grist", "icons": [{"id": "32c69ef7-71c3-4212-84af-e1904cfe45fd", "name": "Grist", "type": "light"}]}]}, {"id": "1ea76fe3-1bca-46da-b08e-dbbb8fc78cef", "name": "WeTransfer", "tags": [], "issuers": ["wetransfer-prod"], "match_rules": null, "icons_collections": [{"id": "87364362-31ca-4e7d-b04c-0b7eb4d8cf3b", "name": "WeTransfer", "icons": [{"id": "0f6a56fb-e0d9-4642-8990-ac6636313a22", "name": "WeTransfer", "type": "light"}, {"id": "c361ac89-81ea-45e9-b675-c72760c31c0f", "name": "WeTransfer", "type": "dark"}]}]}, {"id": "1eac7d7d-c6cd-46f4-8d47-bb6e70163bbc", "name": "Guilded", "tags": [], "issuers": [], "match_rules": [{"text": "Guilded", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Guilded", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0d3bc1cc-73c7-4a58-a0fd-3b6293e0eef6", "name": "Guilded", "icons": [{"id": "0eeb1a92-ee4e-4b68-b01d-76ae02b4ec77", "name": "Guilded", "type": "light"}]}]}, {"id": "1eafb2b3-17d9-417f-8d1d-afb6d9aca878", "name": "Pulseway", "tags": [], "issuers": ["Pulseway"], "match_rules": [], "icons_collections": [{"id": "12a96d37-ecc7-4dce-b36e-9249a89d343c", "name": "Pulseway", "icons": [{"id": "2afd96b8-fc3a-4137-9b5b-f9034955e4f4", "name": "Pulseway", "type": "dark"}, {"id": "587271c2-def8-4ab4-ada7-a663796a24a3", "name": "Pulseway", "type": "light"}]}]}, {"id": "1efc3706-b0df-43aa-b5d5-2ecfda6901e0", "name": "ThriveCart", "tags": [], "issuers": [], "match_rules": [{"text": "ThriveCart", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ThriveCart", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "17368174-958d-4087-afaf-9f6925c52d8d", "name": "ThriveCart", "icons": [{"id": "665aff01-67d3-4f95-971e-c7942c727f0e", "name": "ThriveCart", "type": "light"}]}]}, {"id": "1f1a8f7b-4b21-4e9d-abb6-31ba668b51ab", "name": "Rev", "tags": [], "issuers": [], "match_rules": [{"text": "Rev", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rev", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aad50bee-dff6-4e2e-9d39-0814615cb406", "name": "Rev", "icons": [{"id": "8c75a964-1d43-4f93-8825-b22f36ac2bdc", "name": "Rev", "type": "dark"}, {"id": "ec979967-c93e-4327-b2ed-f952b485e3b5", "name": "Rev", "type": "light"}]}]}, {"id": "1f732634-e6cc-4219-83d4-9e78d41372f8", "name": "Hootsuite", "tags": [], "issuers": ["Hootsuite"], "match_rules": [], "icons_collections": [{"id": "74f2a271-9922-4483-94d1-95e117c17d8a", "name": "Hootsuite", "icons": [{"id": "a6f100f1-ae77-4478-8e91-312784527a1b", "name": "Hootsuite", "type": "light"}]}]}, {"id": "1f81cfe5-27bb-4ebf-871b-4eb8d5b2a61d", "name": "SideQuest ", "tags": [], "issuers": [], "match_rules": [{"text": "SideQuest ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SideQuest ", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "SideQuest(\\+|\\s|-|_)", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "SideQuest(\\+|\\s|-|_)", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "b270443b-9b26-4dac-9906-447e61997783", "name": "SideQuest ", "icons": [{"id": "604e45b4-98c9-4e42-b41a-ab34b5c2f2dc", "name": "SideQuest ", "type": "dark"}, {"id": "bf422483-870d-449b-a6d6-636410167cf7", "name": "SideQuest ", "type": "light"}]}]}, {"id": "1fa205a8-dc73-450f-a488-311eaa5825b6", "name": "Nexcess", "tags": [], "issuers": [], "match_rules": [{"text": "Nexcess", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nexcess", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3c6147c2-3fc5-4603-8871-9dbc130e821f", "name": "Nexcess", "icons": [{"id": "8a36b53e-2f0c-478d-b0da-63a0ac03e002", "name": "Nexcess", "type": "light"}]}]}, {"id": "1fb22909-b458-4caf-b104-22403b6560b2", "name": "Fastly", "tags": [], "issuers": [], "match_rules": [{"text": "Fastly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fastly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a7962d66-ed64-45ec-a940-eb1734f61dc2", "name": "Fastly", "icons": [{"id": "65f01df4-c734-40d6-b689-5660d9d04d92", "name": "Fastly", "type": "light"}]}]}, {"id": "1fbb656a-53a2-4fa1-aa1c-3d04e8a7a122", "name": "Hostinger", "tags": [], "issuers": [], "match_rules": [{"text": "Hostinger", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Hostinger", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6bc04722-2a84-4320-bb7a-b2fee8c8368e", "name": "Hostinger", "icons": [{"id": "4012469c-6189-4183-a3c0-b0f52e872abd", "name": "Hostinger", "type": "dark"}, {"id": "9f2f952b-4f8a-4b09-b062-58b5f59ff9e5", "name": "Hostinger", "type": "light"}]}]}, {"id": "1fc76f0a-2d9b-4628-8174-f81113e74375", "name": "Twilio", "tags": [], "issuers": ["Twilio"], "match_rules": null, "icons_collections": [{"id": "f7f34153-2231-4494-80a6-2817be0beae9", "name": "Twilio", "icons": [{"id": "3e795930-4f2e-404d-9999-e10901a8ba19", "name": "Twilio", "type": "light"}]}]}, {"id": "1ff74e4d-ca1d-4128-a20b-6c9facf952a4", "name": "Webroot", "tags": [], "issuers": [], "match_rules": [{"text": "Webroot", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Webroot", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "94936fd1-025c-4288-a083-ba2603ad335c", "name": "Webroot", "icons": [{"id": "311a7697-6b69-442e-8b2a-061190e35c1c", "name": "Webroot", "type": "light"}]}]}, {"id": "2005609a-941c-49bf-a8ef-a5907cc7b99d", "name": "Telekom", "tags": [], "issuers": ["Telekom"], "match_rules": null, "icons_collections": [{"id": "7a8b0ea6-5a96-4d2e-8ce6-c2c2924fb8c3", "name": "Telekom", "icons": [{"id": "be1ef863-6cbc-481f-bf45-77a17ff39391", "name": "Telekom", "type": "light"}]}]}, {"id": "207fb994-0828-4c1a-855e-41c4d52cfa70", "name": "Hexonet", "tags": [], "issuers": [], "match_rules": [{"text": "Hexonet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hexonet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "326ddcba-9cb9-4483-aa63-d1e65d280db5", "name": "Hexonet", "icons": [{"id": "b88dc3f0-3d93-489a-afbd-7ede6163da08", "name": "Hexonet", "type": "dark"}, {"id": "d3717c4d-7b1f-45e6-b986-1c69b0cef322", "name": "Hexonet", "type": "light"}]}]}, {"id": "20a519d7-aaa2-4f6d-a013-703bc6895b3e", "name": "FragDenStaat", "tags": [], "issuers": [], "match_rules": [{"text": "FragDenStaat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FragDenStaat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "009dcb53-a8a5-421f-8621-75d32e9e72f2", "name": "FragDenStaat", "icons": [{"id": "95c66077-5297-4e65-a646-7b32f88c3f86", "name": "FragDenStaat", "type": "light"}]}]}, {"id": "215acee1-36b6-4597-bffc-8cd403ec2614", "name": "Netim", "tags": [], "issuers": [], "match_rules": [{"text": "Netim", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Netim", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "44126549-b0b5-4211-8f1b-4cb988148ae7", "name": "Netim", "icons": [{"id": "390c2d1a-dd43-4ba4-8226-32c9721b3015", "name": "Netim", "type": "light"}]}]}, {"id": "21701630-a5d2-457c-a983-bfbf4efa801c", "name": "Epic Games", "tags": [], "issuers": ["Epic Games"], "match_rules": [], "icons_collections": [{"id": "2006f387-1bc7-4e9b-8ea7-0a8c3a9924f8", "name": "Epic Games", "icons": [{"id": "44fdaa02-9b6a-4cc5-bb38-301cd79e9267", "name": "Epic Games", "type": "dark"}, {"id": "893af163-83c6-4517-a39e-8765ba83f4b7", "name": "Epic Games", "type": "light"}]}]}, {"id": "21b12eda-626e-4173-b12a-66ee9b5a73fe", "name": "Semaphore", "tags": [], "issuers": [], "match_rules": [{"text": "Semaphore", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Semaphore", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bdfa4333-cca6-40ae-b173-92e0079b66c9", "name": "Semaphore", "icons": [{"id": "ab026c48-bb71-470f-be72-1ea99fbee263", "name": "Semaphore", "type": "light"}]}]}, {"id": "21b17492-ed64-4fd0-930b-d9f34a861981", "name": "Tencent Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "Tencent Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tencent Cloud", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Tencent(\\+|\\s|-|_)Cloud", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Tencent(\\+|\\s|-|_)Cloud", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "15ac8398-106b-4b58-8fab-2b37badbce39", "name": "Tencent Cloud", "icons": [{"id": "d5f9a371-2487-4e91-ace5-f00dc2c9ece7", "name": "Tencent Cloud", "type": "light"}]}]}, {"id": "21d066cf-c0d6-4dd0-8d00-3dd627548550", "name": "OneSignal", "tags": [], "issuers": [], "match_rules": [{"text": "OneSignal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OneSignal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7ec2cec8-107b-4a84-91d1-9e3d601f52cf", "name": "OneSignal", "icons": [{"id": "239576e8-1902-40ca-9d2e-cb03a81cc66e", "name": "OneSignal", "type": "light"}]}]}, {"id": "21d5dcc4-4c1b-4d90-99d0-5cd35c815526", "name": "Zoho", "tags": [], "issuers": ["Zoho"], "match_rules": [{"text": "Zoho", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "df531f5b-5488-4aa9-87f6-d950b3ca04eb", "name": "Zoho", "icons": [{"id": "d1b82ad3-a176-439c-8fa0-737f3350c491", "name": "ZOHO", "type": "light"}]}]}, {"id": "21d63430-4977-43d5-a1e4-00cd3c390165", "name": "Advcash", "tags": [], "issuers": [], "match_rules": [{"text": "Advcash", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "03641fa7-f680-4f99-ac15-4954061e237c", "name": "Advcash", "icons": [{"id": "349c43e1-5aee-4201-9b44-ba436af8dc06", "name": "Advcash", "type": "dark"}, {"id": "84d0c85a-c739-4a0e-a6f6-cce9890b920a", "name": "Advcash", "type": "light"}]}]}, {"id": "21ef7a69-f366-4dfd-ada6-663bc67d2e8c", "name": "Fastmail", "tags": ["mail", "email", "e-mail"], "issuers": ["Fastmail"], "match_rules": null, "icons_collections": [{"id": "4d15f4f2-0c7e-41b1-a9af-be07644246c1", "name": "Fastmail", "icons": [{"id": "48b83a3b-792e-44d0-8a7d-f90cf27257c6", "name": "Fastmail", "type": "dark"}, {"id": "cf6e602d-7036-41ea-8bb8-9ae4cd4f5b1a", "name": "Fastmail", "type": "light"}]}]}, {"id": "232af909-986f-4ba7-bcfa-8c8fe05c1a14", "name": "AppFolio", "tags": [], "issuers": [], "match_rules": [{"text": "AppFolio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AppFolio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6a5e50e5-ee56-4202-b25b-817591f7cc0a", "name": "AppFolio", "icons": [{"id": "ec9b8014-94d8-42bc-8e5f-ec0b6f57fc33", "name": "AppFolio", "type": "light"}]}]}, {"id": "234be581-45e1-41d5-98fb-d8ec4201b33e", "name": "WIX", "tags": [], "issuers": ["WIX"], "match_rules": null, "icons_collections": [{"id": "386356ba-0feb-4aca-8074-dd9b38e0e664", "name": "WIX", "icons": [{"id": "28324ebf-bc7f-43b4-938a-9a085f282c85", "name": "WIX", "type": "light"}, {"id": "535a07c6-ae43-438a-8f21-e1486fd18b2a", "name": "WIX", "type": "dark"}]}]}, {"id": "235a2434-4157-4a43-b5a4-ec75190f2891", "name": "mail.de", "tags": [], "issuers": [], "match_rules": [{"text": "mail.de", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "mail.de", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3a48fd2b-0ec9-4a9a-ad63-643a389b4afa", "name": "mail.de", "icons": [{"id": "030990c7-62db-4634-ad83-2e60e294a2ea", "name": "mail.de", "type": "light"}]}]}, {"id": "23842093-c49f-4db6-a353-d561534e0f10", "name": "Awin", "tags": [], "issuers": [], "match_rules": [{"text": "Awin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Awin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9dececd7-d941-4eaa-8b9e-de7a4c46993c", "name": "Awin", "icons": [{"id": "42ef225c-3dfb-463d-baa3-bf9a841ab7a1", "name": "Awin", "type": "light"}]}]}, {"id": "23d4f93d-c982-49e6-9e31-aa5eda593931", "name": "WhaleFin", "tags": [], "issuers": [], "match_rules": [{"text": "WhaleFin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "WhaleFin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47f571f7-d7c1-4f10-9eca-7434a4f8a5af", "name": "WhaleFin", "icons": [{"id": "0cada5ac-9590-42f9-b048-302235ef5522", "name": "WhaleFin", "type": "light"}]}]}, {"id": "23da4e5e-905a-42bf-9f57-421ca0028ccf", "name": "Spreedly", "tags": [], "issuers": [], "match_rules": [{"text": "Spreedly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Spreedly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "95dd928b-9ccb-4e5c-b661-3ff2686a7bbe", "name": "Spreedly", "icons": [{"id": "4352b762-180c-46dc-9ec2-fb2605d90c98", "name": "Spreedly", "type": "light"}]}]}, {"id": "23eea0ca-0ac4-459e-8782-f2a8dfa632de", "name": "CoinDCX", "tags": [], "issuers": ["CoinDCX"], "match_rules": [], "icons_collections": [{"id": "8bc3de93-53c3-42bf-8791-6249a7f8a718", "name": "CoinDCX", "icons": [{"id": "7b9fb541-eb7a-4cc4-92ba-281697220263", "name": "CoinDCX", "type": "light"}, {"id": "f5ada260-5149-441c-a40b-32b38fdadec0", "name": "CoinDCX", "type": "dark"}]}]}, {"id": "249073bd-77de-455b-9158-5126dc689e35", "name": "Xink", "tags": [], "issuers": [], "match_rules": [{"text": "Xink", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Xink", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "08efbf4c-fc53-47e1-b222-73cc56b700d3", "name": "Xink", "icons": [{"id": "f156fcb3-3f09-47a8-a63e-922ba48ae2c0", "name": "Xink", "type": "light"}]}]}, {"id": "24b4d056-be58-4810-9cc7-7d39b2a1ee73", "name": "OnMail", "tags": [], "issuers": [], "match_rules": [{"text": "OnMail", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "OnMail", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a0d99d43-409e-4969-922e-356b14a831ef", "name": "OnMail", "icons": [{"id": "f5fa7769-8ff4-4ad2-8171-258a35158c01", "name": "OnMail", "type": "light"}]}]}, {"id": "24c038c9-41b6-46b2-bafd-046fc074ef54", "name": "Karatbit", "tags": [], "issuers": ["Karatbit"], "match_rules": [], "icons_collections": [{"id": "b887ca8f-06dc-4d85-9990-03c1dea2060f", "name": "Karatbit", "icons": [{"id": "ba63896a-85ec-4d14-b5ff-4d81d24fd8e2", "name": "Karatbit", "type": "light"}]}]}, {"id": "2523a652-bbdb-4d9f-81c0-11d48ac4c227", "name": "Getscreen.me", "tags": [], "issuers": [], "match_rules": [{"text": "Getscreen.me", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Getscreen.me", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "970a7af5-a2e0-4420-80b4-43a13913d373", "name": "Getscreen.me", "icons": [{"id": "47c13f9a-e426-469a-b273-b0846cc2b0e5", "name": "Getscreen.me", "type": "light"}]}]}, {"id": "25dcd68c-0c9d-4942-8f94-46c0d6136b67", "name": "Cal.com", "tags": [], "issuers": [], "match_rules": [{"text": "cal.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "cal.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "56f0cd99-b578-470f-a71a-1560d3145115", "name": "Cal.com", "icons": [{"id": "01c6a190-2de2-4711-b936-2957e8870234", "name": "cal.com", "type": "light"}, {"id": "a4a5df6e-6575-4b6e-99a2-7dca8b418c01", "name": "cal.com", "type": "dark"}]}]}, {"id": "25dfebc9-e58c-4beb-a1f2-e8e1cddb4ed4", "name": "Later", "tags": [], "issuers": ["APP.LATER.COM"], "match_rules": null, "icons_collections": [{"id": "11a4b58d-5001-4c15-8206-f576228e5787", "name": "Later", "icons": [{"id": "ad3d5d3a-e703-4c32-b5ff-516c5648dd48", "name": "Later", "type": "light"}]}]}, {"id": "25f3c15e-335a-44a3-973e-b468581db19e", "name": "Newegg", "tags": [], "issuers": ["Newegg"], "match_rules": null, "icons_collections": [{"id": "f68a6dd7-04af-4bb4-861e-bfecc996fa0f", "name": "Newegg", "icons": [{"id": "99b0d21a-005d-4189-80b9-7bcfba52f37e", "name": "Newegg", "type": "light"}, {"id": "c8b6a5fa-2dd2-4a06-aa30-1d33dcd7d9cb", "name": "Newegg", "type": "dark"}]}]}, {"id": "261606e8-1535-454d-b762-dbe5f20f3a17", "name": "Braintree", "tags": [], "issuers": ["Braintree Production"], "match_rules": [], "icons_collections": [{"id": "cc6d4c9d-7ab8-4cda-ba17-7289d6a1261b", "name": "Braintree", "icons": [{"id": "d2404791-2777-4fe6-8499-33776fa75332", "name": "Braintree", "type": "light"}]}]}, {"id": "26455f8e-9672-438e-814c-47b4a438115f", "name": "University of Oxford", "tags": [], "issuers": [], "match_rules": [{"text": "University of Oxford", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Oxford", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f4263e6c-9da8-4595-a766-4a1e27708201", "name": "University of Oxford", "icons": [{"id": "ff363249-1b1d-494e-b04f-414a7fad7904", "name": "University of Oxford", "type": "light"}]}]}, {"id": "26482eb4-efc5-4efd-9ec7-d133634e64d0", "name": "SSLTrust", "tags": [], "issuers": [], "match_rules": [{"text": "SSLTrust", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SSLTrust", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47b4796a-b294-4f8b-95e4-d01da8820523", "name": "SSLTrust", "icons": [{"id": "7f478b36-b1d5-40c7-9663-a9887b98511f", "name": "SSLTrust", "type": "light"}]}]}, {"id": "2671591e-ddfb-4077-bf6f-5422b902e8e5", "name": "Cloud 66", "tags": [], "issuers": [], "match_rules": [{"text": "Cloud 66", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cloud 66", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0cbc497a-1247-48ba-bb12-ec187e98b27f", "name": "Cloud 66", "icons": [{"id": "228d8579-472f-420f-b937-9a2699407ed0", "name": "Cloud 66", "type": "light"}]}]}, {"id": "26ac0a8e-28ab-43e0-b93a-c728df165800", "name": "Telderi", "tags": [], "issuers": ["Telderi"], "match_rules": [], "icons_collections": [{"id": "c5981a81-ff16-4d3f-abb2-e297140db537", "name": "Telderi", "icons": [{"id": "96e86ce4-9f9a-4def-8d0a-c6c4b4ebe13b", "name": "Telderi", "type": "light"}]}]}, {"id": "27232a1d-be11-4189-b56b-78826c35b981", "name": "Digital Surge", "tags": [], "issuers": [], "match_rules": [{"text": "Digital Surge", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Digital Surge", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cdb8a648-f731-487f-88fa-fd3cedd58d77", "name": "Digital Surge", "icons": [{"id": "202023ec-7402-45d4-b80b-dd722e9db885", "name": "Digital Surge", "type": "light"}]}]}, {"id": "2726439f-7b21-45f0-805e-d8acfa1eb84c", "name": "AVG", "tags": [], "issuers": ["AVG"], "match_rules": null, "icons_collections": [{"id": "4fcd28ca-176d-441a-bd66-e10d5f9e40a1", "name": "AVG", "icons": [{"id": "41b2f940-5999-4b12-9a39-148e80ea17f7", "name": "AVG", "type": "light"}]}]}, {"id": "2759aca5-50de-47bf-8baa-776a4f781347", "name": "Everlaw", "tags": [], "issuers": [], "match_rules": [{"text": "Everlaw", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Everlaw", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "08ffda58-bcab-4b42-a8aa-8f2e1fdc13e5", "name": "Everlaw", "icons": [{"id": "a3fd23e7-19a8-42f8-9915-f9da9918e63e", "name": "Everlaw", "type": "light"}, {"id": "ca84f876-a214-453c-a135-8f17ab99ea72", "name": "Everlaw", "type": "dark"}]}]}, {"id": "27a1fa34-4649-4fda-844f-dbf23d43eed8", "name": "Rippling", "tags": [], "issuers": [], "match_rules": [{"text": "Rippling", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rippling", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ddbd79e3-8288-40eb-bd2b-3afedba111c9", "name": "Rippling", "icons": [{"id": "02077b16-bdd1-433e-81c7-9b8d69a0a8aa", "name": "Rippling", "type": "light"}, {"id": "a3787ec7-fbeb-44e5-a1cb-101435db5114", "name": "Rippling", "type": "dark"}]}]}, {"id": "27a6e1b8-42fc-4ae9-b277-542b45e3862f", "name": "Coda", "tags": [], "issuers": [], "match_rules": [{"text": "Coda", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coda", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a7d645e3-28bb-4e7b-8283-ec5e8b899423", "name": "Coda", "icons": [{"id": "d10f01b2-e41e-42c7-abbb-c05b653f06ae", "name": "Coda", "type": "light"}]}]}, {"id": "27b7190a-0414-4bb9-abaf-ef75a461e5a2", "name": "Alarm.com", "tags": [], "issuers": [], "match_rules": [{"text": "Alarm.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Alarm.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "49f85b32-651c-421d-b564-2afac43b4591", "name": "Alarm.com", "icons": [{"id": "61d576c9-4b27-4fe4-bf6a-86d348b4f206", "name": "Alarm.com", "type": "light"}]}]}, {"id": "280053ba-084f-4f1f-a672-524dc7ba09d9", "name": "TrueNAS Core", "tags": [], "issuers": ["iXsystems"], "match_rules": [], "icons_collections": [{"id": "3d17c742-2a60-44fc-931a-60537102d17c", "name": "TrueNAS Core", "icons": [{"id": "d2730466-a821-4636-b245-6edd18ca24e1", "name": "TrueNAS Core", "type": "light"}]}]}, {"id": "2820a93a-f4d4-484a-adaa-f46b186709c4", "name": "Yahoo", "tags": [], "issuers": ["Yahoo"], "match_rules": [], "icons_collections": [{"id": "888f5964-f793-43fc-a635-3cdca36ba68e", "name": "Yahoo", "icons": [{"id": "d29a49ea-6b26-49c0-8e0e-890fa44aec4e", "name": "Yahoo", "type": "light"}]}]}, {"id": "28990ab3-2a7d-47be-83da-6a3d3faaf822", "name": "CharlieHR", "tags": [], "issuers": [], "match_rules": [{"text": "CharlieHR", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CharlieHR", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e63a3cf7-e7e6-48dc-b230-1da4c28e04c1", "name": "CharlieHR", "icons": [{"id": "afa6a03c-925d-4159-84d8-72f57d7af192", "name": "CharlieHR", "type": "light"}]}]}, {"id": "29266734-6296-49ce-bf2e-b346762b5b42", "name": "Mercado Livre", "tags": [], "issuers": ["Mercado Livre"], "match_rules": [], "icons_collections": [{"id": "5cb7030d-45e2-45a4-b8c6-2b5d61a3783e", "name": "Mercado Libre", "icons": [{"id": "0b7a88a1-4c27-41b7-b0a9-242b5bf36589", "name": "Mercado Libre", "type": "light"}]}]}, {"id": "2954285f-bb31-4666-89aa-0192f8633d8f", "name": "Pobox", "tags": [], "issuers": [], "match_rules": [{"text": "Pobox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pobox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8faada07-7203-4745-a0a0-3e0c8ab2a761", "name": "Pobox", "icons": [{"id": "3ccd1e3a-08d1-4c72-adde-31d259468c4e", "name": "Pobox", "type": "light"}]}]}, {"id": "29661992-71dd-42ba-9d45-2af7bdba4276", "name": "SalesForce", "tags": [], "issuers": [], "match_rules": [], "icons_collections": [{"id": "8573ca05-5712-4043-b243-0d01e40c7b42", "name": "SalesForce", "icons": [{"id": "99aa31c7-eafa-4ea7-8346-8a8f1ddd0895", "name": "SalesForce", "type": "light"}]}]}, {"id": "296ed6d3-2a00-4188-a6fb-65a7fa61ffb3", "name": "BtcTurk", "tags": [], "issuers": [], "match_rules": [{"text": "BtcTurk", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BtcTurk", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4613a6c0-9326-46ad-bc7f-76567cd98116", "name": "BtcTurk", "icons": [{"id": "9c305a11-3024-452a-a486-94d159176708", "name": "BtcTurk", "type": "light"}]}]}, {"id": "29a9bb30-c40f-4b43-8877-2460915178c5", "name": "1Password", "tags": ["one", "password"], "issuers": ["1Password"], "match_rules": [], "icons_collections": [{"id": "e8c7b9fd-94be-4015-a6be-ffbd626aaa8b", "name": "1Password", "icons": [{"id": "e61d3310-7255-454e-9ce6-f57e63e94fbd", "name": "1Password", "type": "dark"}, {"id": "ed2d4a6e-1781-442e-b20a-35c1211c42a1", "name": "1Password", "type": "light"}]}]}, {"id": "29c7acdb-ab9f-4775-b09a-cefa18a95c12", "name": "ACTIVE 24", "tags": [], "issuers": [], "match_rules": [{"text": "active 24", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "active 24", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "active24", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "active24", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7eceab5b-04fc-4231-a766-70ddef0eb4fe", "name": "ACTIVE 24", "icons": [{"id": "aed97dc4-c88b-4a1d-b91e-203ee6844b3d", "name": "ACTIVE 24", "type": "light"}]}]}, {"id": "29d3aa37-993e-4ed1-84b1-534a6a64e4f0", "name": "LCN.com", "tags": [], "issuers": [], "match_rules": [{"text": "LCN.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LCN.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b128fe49-ee56-43b3-bf6c-c8f4fabfb247", "name": "LCN.com", "icons": [{"id": "5c7242ea-9d04-420d-a0bc-b25486ebb8f7", "name": "LCN.com", "type": "light"}]}]}, {"id": "29d8fdcf-8d4c-4fb3-8c78-9f94dfbec92f", "name": "Laposte", "tags": [], "issuers": [], "match_rules": [{"text": "Laposte", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Laposte", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c4cbaf54-43cd-4cc0-bfe1-d3d432196d57", "name": "Laposte", "icons": [{"id": "a4ec22a0-887b-4404-b5e0-88605ed14d35", "name": "Laposte", "type": "light"}]}]}, {"id": "2a92a644-decd-4275-ae71-927e988d905c", "name": "Openprovider", "tags": [], "issuers": [], "match_rules": [{"text": "Openprovider", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Openprovider", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fcf0a204-9a58-4383-848b-fc1e677e0e4c", "name": "Openprovider", "icons": [{"id": "0be2e0ef-77df-4b56-ab13-558ee1f1128d", "name": "Openprovider", "type": "light"}, {"id": "b3b323a0-59f5-448a-9307-c06715f8c87d", "name": "Openprovider", "type": "dark"}]}]}, {"id": "2aa05de2-85d1-4895-b404-4a472827a777", "name": "bunny.net", "tags": [], "issuers": [], "match_rules": [{"text": "bunny.net", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "bunny.net", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3f20ab01-3db6-436a-9f43-219efd1edf6b", "name": "bunny.net", "icons": [{"id": "d5ff917c-ca35-4000-a9d9-52a34053d825", "name": "bunny.net", "type": "light"}]}]}, {"id": "2ad8dcb5-8eac-43c8-a440-324ca8472f9f", "name": "TruckersMP", "tags": [], "issuers": ["TruckersMP.com"], "match_rules": null, "icons_collections": [{"id": "edddabb5-5986-4bd2-b7a7-dec4ad3cf0ef", "name": "TruckersMP", "icons": [{"id": "3e2f7898-eb68-466a-b25f-3faf89b85a48", "name": "TruckersMP", "type": "light"}, {"id": "b85755ba-5e1e-4d01-b787-31bf4e25d14a", "name": "TruckersMP", "type": "dark"}]}]}, {"id": "2aef430d-017c-4acf-88df-e1526e7ae4d3", "name": "Registro.br", "tags": [], "issuers": ["Registro.br"], "match_rules": null, "icons_collections": [{"id": "7797b564-fed5-418e-b9a3-705c953c16e2", "name": "Registro.br", "icons": [{"id": "4507a29a-ae0e-42c2-b8b9-2fd64acd77aa", "name": "Registro.br", "type": "light"}]}]}, {"id": "2b17d1bd-04ea-4e46-81da-3d553735984c", "name": "intigriti", "tags": [], "issuers": [], "match_rules": [{"text": "intigriti", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "intigriti", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "78605a70-0af7-475f-89ce-a8208b7299e9", "name": "intigriti", "icons": [{"id": "acb0b68f-e5a7-436e-89ee-78f6db0cd7e7", "name": "intigriti", "type": "light"}]}]}, {"id": "2b226d30-bd12-4663-a80b-95eab7a5ca6a", "name": "Formspree", "tags": [], "issuers": [], "match_rules": [{"text": "Formspree", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Formspree", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0d10e7f6-6a46-4ad2-95b0-555433510db6", "name": "Formspree", "icons": [{"id": "4930c606-ecd1-4404-80fb-695d4e1e44f5", "name": "Formspree", "type": "light"}]}]}, {"id": "2b825a32-934a-4282-b1ec-586cae44c590", "name": "InVision", "tags": [], "issuers": [], "match_rules": [{"text": "InVision", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "InVision", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e3faa1c3-d5be-4c8a-9413-54690be1ea53", "name": "InVision", "icons": [{"id": "4b07b0be-c942-455f-b659-b8ec73a909de", "name": "InVision", "type": "light"}]}]}, {"id": "2bba5977-2ad5-4f10-a576-9b536ffdb99b", "name": "ARIN", "tags": [], "issuers": [], "match_rules": [{"text": "arin", "field": "issuer", "matcher": "starts_with", "ignore_case": true}, {"text": "arin", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "bb32b5ea-54fb-4d7f-ae6a-85fc5d319eb9", "name": "ARIN", "icons": [{"id": "0f21b324-9f4b-49b3-834a-15f3a352fbc6", "name": "Arin", "type": "dark"}, {"id": "bd4153a2-3ddd-4146-bbf3-232bec865ea5", "name": "ARIN", "type": "light"}]}]}, {"id": "2befb349-e59f-4898-a6c3-18021b29bad5", "name": "PC Case Gear", "tags": [], "issuers": [], "match_rules": [{"text": "PC Case Gear", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "PC Case Gear", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "654c43e2-5c18-481f-8728-03ef64a471e4", "name": "PC Case Gear", "icons": [{"id": "5a48457e-2ae4-494b-8618-2a92a4058ec5", "name": "PC Case Gear", "type": "light"}]}]}, {"id": "2c03108b-354f-4fea-a348-22106b09892d", "name": "Bitflyer", "tags": [], "issuers": [], "match_rules": [{"text": "BitFlyer", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "BitFlyer", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5c66b6d2-748a-49d3-89ae-a350f0ad6199", "name": "Bitflyer", "icons": [{"id": "0c338142-e300-4845-be69-ea931105de43", "name": "Bitflyer", "type": "light"}]}]}, {"id": "2c406558-a7fb-4c0a-bfe1-9287cfd6eee4", "name": "Wargaming", "tags": [], "issuers": ["wargaming.net"], "match_rules": [{"text": "wargaming.net", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6a6f2199-7cef-41ea-9294-ec735000f369", "name": "Wargaming", "icons": [{"id": "105ad3c7-dce3-4d83-be57-6f1f6277f662", "name": "Wargaming", "type": "dark"}, {"id": "336451f0-cb76-4bb1-93d9-a8c209add13c", "name": "Wargaming", "type": "light"}]}]}, {"id": "2c41b3d7-8911-4fe5-a4ad-269c584af59e", "name": "Nitrado", "tags": [], "issuers": [], "match_rules": [{"text": "Nitrado", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nitrado", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f428cd5b-6cb5-46d0-b01a-27730f941dcc", "name": "Nitrado", "icons": [{"id": "bf43f62e-763e-46a5-8194-ffdf2a1a358f", "name": "Nitrado", "type": "light"}]}]}, {"id": "2d27e715-0b4f-4f98-9a1b-cab5feb56061", "name": "Looker", "tags": [], "issuers": [], "match_rules": [{"text": "Looker", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Looker", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eb8db1ae-0516-40cb-ae5a-7196303e5af5", "name": "Looker", "icons": [{"id": "aee20af6-fee2-4cd8-93c4-f0f2471ed98b", "name": "Looker", "type": "light"}]}]}, {"id": "2d311a05-4871-46c8-8346-ece1260047cb", "name": "Kiva", "tags": [], "issuers": [], "match_rules": [{"text": "Kiva", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Kiva", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a5dca864-a436-49c4-bd7e-8900f584eac9", "name": "Kiva", "icons": [{"id": "ed2ea7ee-3081-45a2-b97f-f785b43b89c7", "name": "Kiva", "type": "light"}]}]}, {"id": "2dba5c39-8c5a-4dd1-9080-1615d2ab9930", "name": "GREE", "tags": [], "issuers": [], "match_rules": [{"text": "GREE", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GREE", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "769e6c9b-b138-42e7-975f-4059a26467d6", "name": "GREE", "icons": [{"id": "28c7326f-a1d0-480e-bdcb-b7be844509a2", "name": "GREE", "type": "light"}]}]}, {"id": "2dc6e938-d911-4bed-ab56-725cfcb64db7", "name": "Sumo Logic", "tags": [], "issuers": [], "match_rules": [{"text": "Sumo Logic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sumo Logic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0dd4ff02-9548-4de3-a208-0e36e4623e6c", "name": "Sumo Logic", "icons": [{"id": "26b834c6-60dd-4789-9792-9a2aa1621e0d", "name": "Sumo Logic", "type": "light"}]}]}, {"id": "2ddbb46e-64b8-42ec-9e69-18fd494cb67c", "name": "Wellfound", "tags": [], "issuers": [], "match_rules": [{"text": "Wellfound", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wellfound", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ac84478a-8890-4e8a-ab7d-667a5f9d95ac", "name": "Wellfound", "icons": [{"id": "c40172e4-498c-4107-b2ab-155b6141162b", "name": "Wellfound", "type": "light"}, {"id": "e298d6f7-3091-4cf4-81ee-fced542f0e24", "name": "Wellfound", "type": "dark"}]}]}, {"id": "2e6c3119-1640-4107-bfa9-8fa653526712", "name": "Addiko Bank", "tags": [], "issuers": [], "match_rules": [{"text": "Addiko", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Addiko", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4c0dc113-103f-44bc-bc2a-68cc75b8d77e", "name": "Addiko Bank", "icons": [{"id": "9f289489-a53f-4f45-95a2-4175a35e7899", "name": "Addiko Bank", "type": "light"}]}]}, {"id": "2eb3a952-7e2d-4088-88f0-0b0c2bdde135", "name": "phpMyAdmin", "tags": [], "issuers": ["phpMyAdmin"], "match_rules": [{"text": "phpMyAdmin", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3a742037-5520-4679-ad2f-e74f8cab7e25", "name": "phpMyAdmin", "icons": [{"id": "c033d80e-73bd-4308-909d-32a6f28793ec", "name": "phpMyAdmin", "type": "light"}]}]}, {"id": "2ed97493-8e5a-4b96-8e85-36d67c92c40a", "name": "Sophos SFOS", "tags": [], "issuers": ["Sophos SFOS"], "match_rules": [], "icons_collections": [{"id": "50aa288d-7f37-4a68-a110-ef9f460c972b", "name": "Sophos SFOS", "icons": [{"id": "d6f04392-d947-46a8-b836-878737e6fd8d", "name": "Sophos SFOS", "type": "light"}]}]}, {"id": "2ee903ff-a9fd-44ce-970e-47fea122a860", "name": "Nord Account", "tags": ["vpn"], "issuers": ["Nord+Account", "Nord Account"], "match_rules": [], "icons_collections": [{"id": "f7a9cbe9-7a5d-42bc-9b2f-93a8254a2660", "name": "Nord Account", "icons": [{"id": "ddaecc33-2298-471b-8a6d-f728407c3045", "name": "Nord Account", "type": "light"}, {"id": "fbd08b46-4cc9-4939-aeda-76f1ce8e4b5a", "name": "Nord Account", "type": "dark"}]}]}, {"id": "2f17c720-647e-48ac-a306-b680954f545c", "name": "Nuclino", "tags": [], "issuers": ["Nuclino"], "match_rules": null, "icons_collections": [{"id": "65608700-0814-41ea-bcc7-7ba73e00dce8", "name": "Nuclino", "icons": [{"id": "179e17e5-2f3c-4466-95e1-49b3fadd257d", "name": "Nuclino", "type": "light"}]}]}, {"id": "2f288386-08f9-408f-8428-d78a564ee5a3", "name": "Action1", "tags": [], "issuers": [], "match_rules": [{"text": "Action1", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Action1", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1a39524f-c116-4dcc-8a76-14e71c48daa3", "name": "Action1", "icons": [{"id": "60453b61-5899-4234-9145-1f4ff35bc681", "name": "Action1", "type": "light"}]}]}, {"id": "2f866d69-c41d-4916-9eaa-ed81c7e913f5", "name": "Epik", "tags": [], "issuers": [], "match_rules": [{"text": "Epik", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Epik", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b7e54bbb-a382-4e91-84a3-beb58369d64e", "name": "Epik", "icons": [{"id": "9899ba22-f221-4e42-861b-14b2ac4f7202", "name": "Epik", "type": "dark"}, {"id": "bd44f221-b6aa-494b-9ea9-6d173c65ecae", "name": "Epik", "type": "light"}]}]}, {"id": "3044f4ad-0fdf-4371-a6a3-57917794ba0b", "name": "CoinTiger", "tags": [], "issuers": [], "match_rules": [{"text": "CoinTiger", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinTiger", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0e0072bb-ea10-461d-8474-44682a7bcefc", "name": "CoinTiger", "icons": [{"id": "d8bed14d-9e3b-42a1-bbdd-071869689291", "name": "CoinTiger", "type": "light"}]}]}, {"id": "3065177b-4d4c-4d13-aaa6-c2f2cb5edabd", "name": "University of Pennsylvania", "tags": [], "issuers": [], "match_rules": [{"text": "University of Pennsylvania", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Pennsylvania", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "adbdaf63-9247-4218-bc2b-b0f27a863454", "name": "University of Pennsylvania", "icons": [{"id": "a72fb234-e943-49ee-b3cb-4ff855758dfc", "name": "University of Pennsylvania", "type": "light"}]}]}, {"id": "3080917e-b830-4692-8043-27b75b765e35", "name": "Onet", "tags": [], "issuers": [], "match_rules": [{"text": "Onet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Onet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8fef4e7f-3d12-4ede-abeb-d2bdbf6b3d14", "name": "Onet", "icons": [{"id": "9efb0652-5735-47b8-86a7-78ff3378ac91", "name": "Onet", "type": "light"}]}]}, {"id": "31282f76-fabc-4cf0-9bb3-7f0ff4a31b81", "name": "Directnic", "tags": [], "issuers": [], "match_rules": [{"text": "Directnic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Directnic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f8158ac8-d2ee-48a3-ba12-f0f9f7530a48", "name": "Directnic", "icons": [{"id": "e0d4c265-4763-4a92-8488-9cd4166e85e1", "name": "Directnic", "type": "light"}]}]}, {"id": "3146ebfd-4d2f-4dca-83aa-699d01d2ec9a", "name": "SparkPost", "tags": [], "issuers": [], "match_rules": [{"text": "SparkPost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SparkPost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3c0870f3-16bf-4651-a21d-9dc781a234fb", "name": "SparkPost", "icons": [{"id": "de0944ae-d280-40f4-ac42-ea5841e525dd", "name": "SparkPost", "type": "light"}]}]}, {"id": "314ca83b-73ed-432b-b6ab-ee00fae0a44d", "name": "StartMail", "tags": [], "issuers": [], "match_rules": [{"text": "StartMail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StartMail", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9123bad4-5110-4d36-beba-b4b661ef1ed7", "name": "StartMail", "icons": [{"id": "1ec2d68b-ae35-4c6c-b26c-744f7c54fda3", "name": "StartMail", "type": "light"}]}]}, {"id": "316212f6-5086-4bb2-8ca1-fdd411280a23", "name": "Intuit", "tags": [], "issuers": ["Intuit"], "match_rules": [], "icons_collections": [{"id": "a9dac0da-53ef-4c0d-b4d0-b7a23666be93", "name": "Intuit", "icons": [{"id": "55799bee-7e26-460e-a643-29e6ece35361", "name": "Intuit", "type": "light"}]}]}, {"id": "31aa8c45-8c81-4039-a617-22fad52486af", "name": "Jottacloud", "tags": [], "issuers": ["Jottacloud"], "match_rules": null, "icons_collections": [{"id": "5847170f-ef51-49ef-a349-72874dc4afe7", "name": "Jottacloud", "icons": [{"id": "2fab006b-31d8-4bce-9048-e93256412b08", "name": "Jottacloud", "type": "light"}]}]}, {"id": "31bec354-b184-44e3-bbe9-43fd3e9d3d58", "name": "Newton", "tags": [], "issuers": [], "match_rules": [{"text": "Newton", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Newton", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ce8fe4b5-becb-4c0d-976a-7c4b9693f131", "name": "Newton", "icons": [{"id": "1c7f313a-8373-47ad-912f-f1da36a0f19f", "name": "Newton", "type": "light"}]}]}, {"id": "31e746da-d4d7-400b-ac87-006cf7f77e39", "name": "Rec Room", "tags": [], "issuers": ["RecRoom"], "match_rules": null, "icons_collections": [{"id": "c924f5d5-dc50-4121-b96f-b61dc8364ea6", "name": "Rec Room", "icons": [{"id": "64192027-e51f-4f60-a10f-5abdeeb1b744", "name": "Rec Room", "type": "dark"}, {"id": "9a019bbf-9b58-4ec7-8961-df0a5e8f6c56", "name": "Rec Room", "type": "light"}]}]}, {"id": "31ea7562-18b7-410f-8023-657cbd65b077", "name": "RubyGems.org", "tags": [], "issuers": [], "match_rules": [{"text": "RubyGems.org", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RubyGems.org", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a0d0c753-2b51-48bf-946c-e7fe3fc08dbf", "name": "RubyGems.org", "icons": [{"id": "a243b618-3dde-4628-9b59-c032ad7b2585", "name": "RubyGems.org", "type": "light"}]}]}, {"id": "320ff1b5-1956-49d7-b842-42e996fb5f31", "name": "Equinix Metal", "tags": [], "issuers": [], "match_rules": [{"text": "Equinix Metal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Equinix Metal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "95753570-0885-46b9-ac29-d653476c97c5", "name": "Equinix Metal", "icons": [{"id": "19915c25-9d01-48c7-870e-6808258fb5ac", "name": "Equinix Metal", "type": "light"}]}]}, {"id": "321c0893-aaa0-487f-8c0a-5099543378d2", "name": "BitSight", "tags": [], "issuers": [], "match_rules": [{"text": "BitSight", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitSight", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a00a4a57-fe95-4bc1-bd9d-1e20319e0525", "name": "BitSight", "icons": [{"id": "29105a39-51ce-46e7-bf63-bbfc97c158ae", "name": "BitSight", "type": "light"}]}]}, {"id": "323a5859-1da6-4fa8-8ec9-e90e44575f6d", "name": "USCIS", "tags": [], "issuers": ["USCIS+myAccount", "USCIS myAccount"], "match_rules": [], "icons_collections": [{"id": "55a7126c-c74b-4030-be46-33baf1d41794", "name": "USCIS", "icons": [{"id": "68cd26a5-04f1-4d74-aaac-129dacfbfddb", "name": "USCIS", "type": "light"}]}]}, {"id": "3299e7f3-8231-45e4-8837-3277574f2368", "name": "Glassdoor", "tags": [], "issuers": ["mfa.glassdoor.com"], "match_rules": null, "icons_collections": [{"id": "e2383048-3ced-4f07-b637-22ac5781ed75", "name": "Glassdoor", "icons": [{"id": "deb814e0-f5de-4b32-b588-f86d33619de4", "name": "Glassdoor", "type": "light"}]}]}, {"id": "33234ba7-e70e-434f-8fc0-79e64c9a9c5b", "name": "DATEV", "tags": [], "issuers": ["Datev"], "match_rules": null, "icons_collections": [{"id": "4bbf45ea-7eb1-4ab8-a2c8-cd130c5f922e", "name": "DATEV", "icons": [{"id": "25e05330-3480-4149-8f6d-aa80ea5f93f1", "name": "DATEV", "type": "light"}]}]}, {"id": "33368632-d426-425b-9c0e-ff8cabaa0c07", "name": "Fritzbox", "tags": [], "issuers": [], "match_rules": [{"text": "fritz", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "fritz", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "780ee78b-a61b-46f3-9faa-0b6cf3f7479d", "name": "Fritzbox", "icons": [{"id": "1cc781fc-21e0-41ac-bee7-a8851dddad30", "name": "Fritzbox", "type": "light"}]}]}, {"id": "33b29957-e237-4eeb-b89e-069ebc6d3201", "name": "ConnectWise", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "5fabb7c6-f73c-45e1-8cd2-aea9a3923719", "name": "ConnectWise", "icons": [{"id": "452253a0-74f7-4cdf-98ff-cd325a4465eb", "name": "ConnectWise", "type": "light"}, {"id": "af7a1dfd-c69d-4ff4-9e81-8cf139a88ba2", "name": "ConnectWise", "type": "dark"}]}]}, {"id": "34044cac-65fc-42a5-9705-3a098f9a7822", "name": "Buildium", "tags": [], "issuers": [], "match_rules": [{"text": "Buildium", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Buildium", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "034a9d9c-e124-4fe3-ab27-14a8ec6151fd", "name": "Buildium", "icons": [{"id": "31784939-0ea7-4025-8ab4-a4e4d6e570de", "name": "Buildium", "type": "light"}]}]}, {"id": "348a8fef-66eb-43e5-ba64-fcd02ca2ba58", "name": "BitForex", "tags": [], "issuers": [], "match_rules": [{"text": "BitForex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitForex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dd8aa2c7-7155-4ae4-8568-8165dbe948b3", "name": "BitForex", "icons": [{"id": "54a26586-f5e4-4cbc-9595-e26932fe23c0", "name": "BitForex", "type": "light"}]}]}, {"id": "34dab018-33d1-4677-b728-25aa9357ff29", "name": "Samsung Account", "tags": [], "issuers": ["Samsung Account"], "match_rules": null, "icons_collections": [{"id": "f01f2f69-0b38-45bf-92b8-3594d61280ef", "name": "Samsung Account", "icons": [{"id": "c70fb155-9268-426d-b6a3-ba4c505e7207", "name": "Samsung Account", "type": "light"}]}]}, {"id": "34ee304a-f3ea-494a-b26e-ff2262285451", "name": "IBM", "tags": ["IBMid"], "issuers": ["IBMid"], "match_rules": [], "icons_collections": [{"id": "810616ca-b2b5-45d1-916e-4f4d467ab276", "name": "IBM", "icons": [{"id": "92405e18-7016-4e27-aa20-04a42b056736", "name": "IBM", "type": "dark"}, {"id": "aa8ddfda-3d64-497b-8c3e-d4d57ea29276", "name": "IBM", "type": "light"}]}]}, {"id": "35403e84-dec1-49a1-8633-5da2c9e9e5c0", "name": "RedShelf", "tags": [], "issuers": [], "match_rules": [{"text": "RedShelf", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RedShelf", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1e96a88a-6add-45cf-91c3-d8830488d652", "name": "RedShelf", "icons": [{"id": "2ef0bd29-0035-4cc3-8876-13777cbb690c", "name": "RedShelf", "type": "light"}]}]}, {"id": "35498c4e-19ae-4e2b-92de-b110baace547", "name": "WhiteBIT", "tags": [], "issuers": ["WhiteBIT"], "match_rules": [{"text": "WhiteBIT", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "df2ff12e-ce9b-4f16-842e-7d1c33960e89", "name": "WhiteBIT", "icons": [{"id": "6baa99a0-c76a-484d-bcfd-3659febf944e", "name": "WhiteBIT", "type": "light"}, {"id": "7c6e1dfd-e06a-4f6f-96c9-38e0792990ca", "name": "WhiteBIT", "type": "dark"}]}]}, {"id": "35646e51-c710-4f22-846e-aa87ee5e4b9e", "name": "Txbit", "tags": [], "issuers": [], "match_rules": [{"text": "Txbit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Txbit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a114f79d-8e7e-4bf3-b3ff-b777151aa322", "name": "Txbit", "icons": [{"id": "9e37dba2-7124-469f-8825-3a9cf0143bc6", "name": "Txbit", "type": "light"}]}]}, {"id": "35ea48b5-450c-42f5-bf05-68c3998a7169", "name": "Fathom Analytics", "tags": [], "issuers": [], "match_rules": [{"text": "Fathom Analytics", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fathom Analytics", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c78530d9-9ea5-4861-babc-f6186512a1d5", "name": "Fathom Analytics", "icons": [{"id": "0f67e484-33d9-4cab-87e9-2c417742b6ff", "name": "Fathom Analytics", "type": "light"}]}]}, {"id": "362fa93b-4dc3-43c8-a666-bde335ba5edd", "name": "HP", "tags": ["hewlett", "packard", "hewlett-packard"], "issuers": ["HP"], "match_rules": null, "icons_collections": [{"id": "b4d61a75-27f5-4b12-9c3d-04d3e1c28729", "name": "HP", "icons": [{"id": "240504d9-897a-4cca-84e8-db95253afbc9", "name": "HP", "type": "light"}]}]}, {"id": "364a192f-39ef-4f2f-a419-d35f5cccb3cd", "name": "manitu", "tags": [], "issuers": [], "match_rules": [{"text": "mein.manitu.de", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "af6e7769-cef5-481c-878d-45e188b840ec", "name": "manitu", "icons": [{"id": "8ad2cb74-da56-4d3b-aeea-3ca56535dc1c", "name": "manitu", "type": "light"}]}]}, {"id": "3680799b-8f4a-4711-8159-d8537f49db77", "name": "ProfitWell", "tags": [], "issuers": [], "match_rules": [{"text": "ProfitWell", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ProfitWell", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "da090fe5-454b-4a44-8900-a78780133578", "name": "ProfitWell", "icons": [{"id": "01915cca-de45-41f0-adf5-0f0637e516a9", "name": "ProfitWell", "type": "dark"}, {"id": "2350419d-50e5-42e9-8ca6-c6ea46cf8694", "name": "ProfitWell", "type": "light"}]}]}, {"id": "368c435d-445c-427c-b39c-8bac7179e105", "name": "VoIP.ms", "tags": [], "issuers": [], "match_rules": [{"text": "VoIP.ms", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VoIP.ms", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8c88abe6-224e-4ab4-b560-ae79e1d00993", "name": "VoIP.ms", "icons": [{"id": "65927472-9d85-46d2-9560-932a3b358390", "name": "VoIP", "type": "dark"}, {"id": "75919b7c-5c99-4161-8a6e-3a275c73c26a", "name": "VoIP.ms", "type": "light"}]}]}, {"id": "36b8cabf-5fc7-45ed-aa9e-5417c82a1230", "name": "NIC_UA", "tags": [], "issuers": [], "match_rules": [{"text": "NIC_UA", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NIC_UA", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2255c47e-3432-4450-9d07-f5bfd18d3e95", "name": "NIC_UA", "icons": [{"id": "aa5f6a26-8d81-4886-9836-0559e2fd8653", "name": "NIC_UA", "type": "light"}]}]}, {"id": "376e354b-4daa-4d4e-a285-0d6bd3372ab0", "name": "XING", "tags": [], "issuers": ["XING"], "match_rules": [], "icons_collections": [{"id": "335c07ee-cc81-4c4d-9583-fbe4ce962901", "name": "XING", "icons": [{"id": "67a7deb8-f8fc-491f-9620-24e6cc7748d7", "name": "XING", "type": "light"}, {"id": "c029a951-8923-4059-a91e-735115511bb3", "name": "XING", "type": "dark"}]}]}, {"id": "37c35aa1-970c-4271-a4e1-5a0c49b66708", "name": "Porkbun", "tags": [], "issuers": ["Porkbun"], "match_rules": null, "icons_collections": [{"id": "1a9acd1f-6265-4ed9-8de6-bfcc356617b5", "name": "Porkbun", "icons": [{"id": "6019f790-bfe7-4c1e-897f-942d4689426d", "name": "Porkbun", "type": "light"}]}]}, {"id": "380c5643-1f0a-43a0-afd9-d764a67829bb", "name": "pair Domains", "tags": [], "issuers": [], "match_rules": [{"text": "pair Domains", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "pair Domains", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ac419c2b-78d2-4910-8e21-fbe8b8d5c187", "name": "pair Domains", "icons": [{"id": "487a2d8e-5bab-4b4f-b303-7dfe863d55da", "name": "pair Domains", "type": "light"}]}]}, {"id": "3842fba8-47c3-45bb-9700-932e86721063", "name": "Norton", "tags": [], "issuers": ["NortonLifeLock"], "match_rules": [], "icons_collections": [{"id": "a659e300-c8b3-4db3-8d11-2ddb1c46ceb8", "name": "Norton", "icons": [{"id": "879efb47-56d1-4378-840c-7de3bb45fd43", "name": "Norton", "type": "light"}]}]}, {"id": "386aa376-6657-47b9-a81f-65e33c2cc266", "name": "ClearScore", "tags": [], "issuers": [], "match_rules": [{"text": "ClearScore", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ClearScore", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2ae40c6d-f9d0-40c3-9b74-9f7897ff5349", "name": "ClearScore", "icons": [{"id": "0b025902-7f10-435e-9160-ca70d5b8e2e6", "name": "ClearScore", "type": "dark"}, {"id": "10f60fb7-fbb8-4255-809d-f80d38c71e5b", "name": "ClearScore", "type": "light"}]}]}, {"id": "38c1b9bc-9040-49ae-8551-0b0166b75708", "name": "Ko-fi", "tags": [], "issuers": [], "match_rules": [{"text": "Ko-fi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Ko-fi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "039d5de3-40fa-44db-8751-d18ea4647055", "name": "Ko-fi", "icons": [{"id": "219c36f7-6e00-49dd-bda0-459ad480ee8e", "name": "Ko-fi", "type": "light"}]}]}, {"id": "38c71d0c-a820-4284-aba9-05721900a2a2", "name": "Cyberreason", "tags": [], "issuers": [], "match_rules": [{"text": "Cyberreason", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cyberreason", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d772ee7f-8f5b-476f-a498-6d13b285c012", "name": "Cyberreason", "icons": [{"id": "8c00abf2-f957-4321-ab45-7be422bcaf9b", "name": "Cyberreason", "type": "dark"}, {"id": "e09fb5a0-825d-452c-9dbd-9dae84bbe431", "name": "Cyberreason", "type": "light"}]}]}, {"id": "3974a4fd-722f-4512-a636-310fdb59719a", "name": "Actionstep", "tags": [], "issuers": ["Actionstep+MFA", "Actionstep MFA"], "match_rules": null, "icons_collections": [{"id": "b69addb0-c23f-4bee-a210-fdb1dfdaba1e", "name": "Actionstep", "icons": [{"id": "1a8a523e-96ca-4dc9-b6ea-4b426f796a09", "name": "Actionstep", "type": "light"}]}]}, {"id": "39ab5009-a9f4-44e2-90e8-becfbecfdbba", "name": "Atera", "tags": [], "issuers": ["Atera"], "match_rules": null, "icons_collections": [{"id": "ce141608-0221-422f-8a07-33d6bca77f1f", "name": "Atera", "icons": [{"id": "01eb4f12-9fc3-48a2-8d49-ec0834c96f9b", "name": "Atera", "type": "light"}]}]}, {"id": "39d9501e-b910-4911-996f-a05972767ce9", "name": "Unraid", "tags": [], "issuers": ["Unraid"], "match_rules": null, "icons_collections": [{"id": "f391fceb-2ff9-4f12-984d-ee59e91e157c", "name": "Unraid", "icons": [{"id": "e2c77a51-4d08-4a13-91e8-bf4f0e484a4f", "name": "Unraid", "type": "light"}]}]}, {"id": "39e865b8-7b99-4ca3-b901-83c585920100", "name": "Arqbackup", "tags": [], "issuers": [], "match_rules": [{"text": "Arqbackup", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Arqbackup", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a866958e-d9d1-4dc7-a335-a96ea12997f1", "name": "Arqbackup", "icons": [{"id": "a647976c-f36e-4966-887c-82c9b4424171", "name": "Arqbackup", "type": "light"}]}]}, {"id": "39fbe7d1-12ab-40ce-9994-5c351ea21420", "name": "Voyager", "tags": [], "issuers": [], "match_rules": [{"text": "Voyager", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Voyager", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2c1ff9a8-bb21-4e12-ac45-cde148d7847f", "name": "Voyager", "icons": [{"id": "d88899c5-9c54-4ee0-a6fb-275293e6638e", "name": "Voyager", "type": "light"}]}]}, {"id": "3a1b611c-599a-4664-960d-e60a941c1971", "name": "PolySwarm", "tags": [], "issuers": ["PolySwarm"], "match_rules": null, "icons_collections": [{"id": "9ec3a35f-b09d-42fd-a1df-354accf630ac", "name": "PolySwarm", "icons": [{"id": "d2347ca8-b48b-4429-8567-01c05c12e71f", "name": "PolySwarm", "type": "dark"}, {"id": "e643ffb4-c2b5-4d74-9122-1b786be3e2df", "name": "PolySwarm", "type": "light"}]}]}, {"id": "3a26c02c-1c6e-49ba-b282-c640f6c05804", "name": "WEB.DE", "tags": [], "issuers": ["WEB.DE"], "match_rules": [], "icons_collections": [{"id": "3af6d11f-d879-4649-b183-20c5742f20dd", "name": "WEB.DE", "icons": [{"id": "e4e06197-b758-4032-b96e-e14ff90211bb", "name": "WEB.DE", "type": "light"}]}]}, {"id": "3a299053-0618-4490-b4e4-cfbf1f77ae2f", "name": "netcup", "tags": [], "issuers": [], "match_rules": [{"text": "netcup", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "netcup", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5636b7b1-26b8-441d-877c-97aa0b1b2b34", "name": "netcup", "icons": [{"id": "725a6ba8-2f4b-4f58-8a41-8a3aaa65772b", "name": "netcup", "type": "light"}]}]}, {"id": "3a38d56b-a576-4eb9-84c9-2652087547df", "name": "Philips Hue", "tags": [], "issuers": ["Philips Hue"], "match_rules": null, "icons_collections": [{"id": "1f762812-c7bc-4425-aafa-da4482812f1d", "name": "Philips Hue", "icons": [{"id": "1a072b4a-f30c-4a47-a965-e366d27f8757", "name": "Philips Hue", "type": "light"}]}]}, {"id": "3a535461-59ad-451d-91f2-14ec42b34e89", "name": "Wykop", "tags": [], "issuers": [], "match_rules": [{"text": "Wykop", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wykop", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "42ccc3a5-7f2b-4147-b2b3-91c6c875fea5", "name": "Wykop", "icons": [{"id": "fd50ad71-56d9-4664-af91-9d4ff39f33a4", "name": "Wykop", "type": "light"}]}]}, {"id": "3a641ca4-6f57-49a6-9ddc-434168915803", "name": "HitBTC", "tags": [], "issuers": [], "match_rules": [{"text": "HitBTC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HitBTC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7f9ec53c-61e8-4dcc-a8e5-d5df6e6139f3", "name": "HitBTC", "icons": [{"id": "110442fd-acac-4a0d-a2d8-a6b50cd920e7", "name": "HitBTC", "type": "light"}]}]}, {"id": "3a997c2d-cc2e-4e14-9be6-b764351896e9", "name": "Replicon", "tags": [], "issuers": [], "match_rules": [{"text": "Replicon", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Replicon", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "651012fa-1f43-45d3-b916-27959c7c09a9", "name": "Replicon", "icons": [{"id": "d240f1dc-a208-4e59-a7a5-e9a4d6113b62", "name": "Replicon", "type": "light"}]}]}, {"id": "3ac1c4d9-ee84-449c-ad7f-a42d7fab9aeb", "name": "RMIT University", "tags": [], "issuers": [], "match_rules": [{"text": "RMIT University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RMIT University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a053caa4-006a-482c-81b0-dcb2d99bac82", "name": "RMIT University", "icons": [{"id": "068316eb-c0d6-4e24-950c-917bcec6138a", "name": "RMIT University", "type": "light"}]}]}, {"id": "3af83d66-abcb-4996-87b3-ea3af6811980", "name": "Cal Poly Pomona", "tags": [], "issuers": [], "match_rules": [{"text": "Cal Poly Pomona", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cal Poly Pomona", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "200d1a5a-4d17-477f-8dce-f5ac5f07a774", "name": "Cal Poly Pomona", "icons": [{"id": "a5594e39-2818-42ea-aa86-a2ace3d47639", "name": "Cal Poly Pomona", "type": "light"}]}]}, {"id": "3b0c488c-bd30-4edf-9441-8a6f97791124", "name": "Proxmox", "tags": [], "issuers": ["Proxmox"], "match_rules": [{"text": "Proxmox", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "ef5373e1-d53a-44c2-8df8-fdb35bd76ccc", "name": "Proxmox", "icons": [{"id": "0ea4b4c1-5ebc-476d-b77b-e3f7ebf8d51b", "name": "Proxmox", "type": "dark"}, {"id": "96bc5655-68d6-430c-9d4c-ff26623b0488", "name": "Proxmox", "type": "light"}]}]}, {"id": "3b37043e-2b0a-45cf-9892-2fc264598fc8", "name": "Union Bank & Trust", "tags": ["ubt"], "issuers": [], "match_rules": [{"text": "Union Bank & Trust", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Union Bank & Trust", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "42d6669a-4fd1-4445-928f-e254072f5ad7", "name": "Union Bank & Trust", "icons": [{"id": "fad87b9b-3378-469b-b022-613ab9dc18cc", "name": "ubt", "type": "light"}]}]}, {"id": "3b394024-5225-410d-86c3-a503206526cc", "name": "Independent Reserve", "tags": [], "issuers": [], "match_rules": [{"text": "Independent Reserve", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Independent Reserve", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "91dc5e46-5bc1-4aa2-a342-24517e7bd941", "name": "Independent Reserve", "icons": [{"id": "a7fad3e4-a2fd-43be-9801-c9e5fccdb94c", "name": "Independent Reserve", "type": "dark"}, {"id": "f7a038e8-d095-4e4b-a07a-192a539db4ac", "name": "Independent Reserve", "type": "light"}]}]}, {"id": "3b69751d-d00b-45f2-b48b-391ce10bd1f0", "name": "Segment", "tags": [], "issuers": [], "match_rules": [{"text": "Segment", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Segment", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1c7f0cd9-23f6-4e4a-bebc-75a1ecfc3121", "name": "Segment", "icons": [{"id": "6c3580d2-1451-483e-9bcd-789201f4fc5b", "name": "Segment", "type": "light"}]}]}, {"id": "3b71ef51-faab-4a56-9cb8-11fbe41f2510", "name": "authentik", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "9c9ea2d0-eae8-421f-afd6-70585d7d959d", "name": "authentik", "icons": [{"id": "7e2d3767-8b66-4cd4-8826-411537b426a6", "name": "authentik", "type": "light"}]}]}, {"id": "3bdcc16a-88c6-43b1-a68f-839711b04378", "name": "AwardWallet", "tags": [], "issuers": [], "match_rules": [{"text": "AwardWallet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AwardWallet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6e0b0b5e-f43a-44c1-9569-6fe8c5d926d3", "name": "AwardWallet", "icons": [{"id": "bbcb7b9f-154d-40cc-ac10-5c7731f2623d", "name": "AwardWallet", "type": "light"}]}]}, {"id": "3bf2e877-d6ba-47b5-ba9d-eed2a288ec38", "name": "HiDrive (STRATO)", "tags": [], "issuers": [], "match_rules": [{"text": "HiDrive (STRATO)", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HiDrive (STRATO)", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "72541e1b-29b4-43e9-ac18-24e7bfb67bea", "name": "HiDrive (STRATO)", "icons": [{"id": "58ac0a26-dd81-4e0b-b502-119b07434eb9", "name": "HiDrive (STRATO)", "type": "light"}]}]}, {"id": "3bf3c372-753b-4a6a-b6ec-b92637fcf1dd", "name": "Grammarly", "tags": [], "issuers": ["Grammarly"], "match_rules": [], "icons_collections": [{"id": "4569f593-1e3b-4f41-9f13-c905d45f277f", "name": "Grammarly", "icons": [{"id": "893ff224-c32e-476d-9893-83a984e8490e", "name": "Grammarly", "type": "light"}]}]}, {"id": "3c1bf001-f071-4209-a36c-7b3bdf5a2021", "name": "Cloudinary", "tags": [], "issuers": [], "match_rules": [{"text": "Cloudinary", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cloudinary", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "be9fcb9f-459b-404d-a523-b74afbbb6952", "name": "Cloudinary", "icons": [{"id": "2f7e4156-3a0b-4b53-b534-43f279857449", "name": "Cloudinary", "type": "light"}]}]}, {"id": "3c657edd-7759-43c1-820c-6ae75eb20cba", "name": "Tweakers", "tags": [], "issuers": [], "match_rules": [{"text": "Tweakers", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tweakers", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d1a868a1-1b51-4834-8c80-817fcde0c581", "name": "Tweakers", "icons": [{"id": "79dd7717-0b3a-46e7-a1bc-a0859a9572ba", "name": "Tweakers", "type": "light"}]}]}, {"id": "3c6bc6c5-75a3-425e-84d1-df8c562d8869", "name": "Usabilla", "tags": [], "issuers": [], "match_rules": [{"text": "Usabilla", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Usabilla", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6aff8a26-1d30-4d78-8215-ece1f57015c3", "name": "Usabilla", "icons": [{"id": "ee3c863a-55fc-446f-ab61-cc332d48c12c", "name": "Usabilla", "type": "light"}]}]}, {"id": "3c9fb79f-a473-47eb-aa75-f5ef5b35829b", "name": "Ubisoft", "tags": [], "issuers": ["Ubisoft"], "match_rules": [], "icons_collections": [{"id": "eac7ef2f-0db9-4227-9d59-2745dc99adb5", "name": "Ubisoft", "icons": [{"id": "0cde6a7f-b705-470f-9414-f8fb9d2eb089", "name": "Ubisoft", "type": "dark"}, {"id": "d8b4b4d5-e571-4aac-94a0-2f657b1d3e7b", "name": "Ubisoft", "type": "light"}]}]}, {"id": "3ca4a205-70c1-4e62-abbc-aceec59fa614", "name": "ThreatX", "tags": [], "issuers": [], "match_rules": [{"text": "ThreatX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ThreatX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fd44856a-ea04-4cf0-a826-0240fc8b6e8f", "name": "ThreatX", "icons": [{"id": "616e2f16-d092-4260-a650-2504fda2c577", "name": "ThreatX", "type": "dark"}, {"id": "6c7bd680-71df-4218-8d34-261a63139ce9", "name": "ThreatX", "type": "light"}]}]}, {"id": "3d0938bb-3863-472c-b28c-967274018aa1", "name": "Liquid", "tags": [], "issuers": [], "match_rules": [{"text": "Liquid", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Liquid", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "176ce24f-f580-4b7e-8013-959c8b62df26", "name": "Liquid", "icons": [{"id": "12003614-c77e-433e-8bca-02488e84cfe9", "name": "Liquid", "type": "light"}]}]}, {"id": "3d268d14-555c-4597-84ea-c5aa052ba370", "name": "Georgia Institute of Technology ", "tags": [], "issuers": [], "match_rules": [{"text": "Georgia Institute of Technology ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Georgia Institute of Technology ", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Georgia(\\+|\\s|-|_)Institute(\\+|\\s|-|_)of(\\+|\\s|-|_)Technology(\\+|\\s|-|_)", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Georgia(\\+|\\s|-|_)Institute(\\+|\\s|-|_)of(\\+|\\s|-|_)Technology(\\+|\\s|-|_)", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "4d0b699f-e727-4e97-a8d9-1ce9b01f0f01", "name": "Georgia Institute of Technology ", "icons": [{"id": "c9bf7f73-1982-4c23-81df-0297539552b3", "name": "Georgia Institute of Technology ", "type": "light"}]}]}, {"id": "3d2e931b-a5c1-4bf6-bec8-64d823a85680", "name": "Surfshark VPN", "tags": [], "issuers": [], "match_rules": [{"text": "Surfshark", "field": "label", "matcher": "equals", "ignore_case": true}], "icons_collections": [{"id": "25759a33-666d-44ea-8185-616ea36e9db4", "name": "Surfshark VPN", "icons": [{"id": "1fc4f981-a213-4a16-b82c-c8dbca6978df", "name": "Surfshark VPN", "type": "light"}]}]}, {"id": "3d516ea8-a8b7-4687-82f7-a3b8e9df68d1", "name": "Gitlab", "tags": [], "issuers": ["gitlab.com"], "match_rules": [], "icons_collections": [{"id": "28fc05d0-a329-4a0a-a0ec-066fd278577e", "name": "Gitlab", "icons": [{"id": "eaa60b33-7209-4220-90b6-eaec98aa3559", "name": "Gitlab", "type": "light"}]}]}, {"id": "3e03ce4d-97ff-4740-838a-3ada751d2c38", "name": "Constellix", "tags": [], "issuers": [], "match_rules": [{"text": "Constellix", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Constellix", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d78b0fa6-4f29-4227-ab83-280ac34df01e", "name": "Constellix", "icons": [{"id": "e160c6f1-cb7c-4fdb-9d51-0f9fc5210b25", "name": "Constellix", "type": "light"}]}]}, {"id": "3e0437a5-acaf-4465-b9f6-136b07da4470", "name": "AVS Forum", "tags": [], "issuers": [], "match_rules": [{"text": "AVS Forum", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AVS Forum", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "AVS(\\+|\\s|-|_)Forum", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "AVS(\\+|\\s|-|_)Forum", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "6e12f3aa-3796-4f70-a5a6-0ddb1c6b4bda", "name": "AVS Forum", "icons": [{"id": "6dd4f41e-f6cd-4c14-a2c8-38905936ae79", "name": "AVS Forum", "type": "light"}]}]}, {"id": "3e09caae-2c07-4281-8b7c-ea76c88d6c87", "name": "Mint", "tags": [], "issuers": [], "match_rules": [{"text": "Mint", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mint", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "59942db5-fa3a-4a64-9b24-b3fbe2ed92f1", "name": "Mint", "icons": [{"id": "5109d9ea-d4cd-4bf4-b23f-e9d17dd90b89", "name": "Mint", "type": "light"}]}]}, {"id": "3e25094f-08c0-4932-9dcd-633bf8ad137e", "name": "AlgoLightHouse", "tags": [], "issuers": ["AlgoLightHouse"], "match_rules": null, "icons_collections": [{"id": "3d835d08-84b1-48e7-9d9d-c09e7db84396", "name": "AlgoLightHouse", "icons": [{"id": "c7ee805c-1894-4359-992c-7ece78c968bd", "name": "AlgoLightHouse", "type": "light"}]}]}, {"id": "3ec08d85-d803-4b6a-a2f4-f5d24c9bba67", "name": "GitHub", "tags": [], "issuers": ["GitHub"], "match_rules": [], "icons_collections": [{"id": "fff32440-f5be-4b9c-b471-f37d421f10c3", "name": "GitHub", "icons": [{"id": "22e59211-f891-452c-907f-aa3a18f0df0d", "name": "GitHub", "type": "dark"}, {"id": "fe145f01-40c5-4d19-9315-056bee84d02b", "name": "GitHub", "type": "light"}]}]}, {"id": "3ed94a08-7de6-4137-89d4-b8c4805482d6", "name": "Webcentral", "tags": [], "issuers": [], "match_rules": [{"text": "Webcentral", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Webcentral", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6b614d5d-b4ca-41d9-8a20-2839f42ccafe", "name": "Webcentral", "icons": [{"id": "20a60c05-c43b-4146-a5a1-1f4444b4ee2e", "name": "Webcentral", "type": "light"}]}]}, {"id": "3ee94c0d-4c2c-4b59-a35e-9251bed8d7ce", "name": "VK", "tags": [], "issuers": ["VK"], "match_rules": [], "icons_collections": [{"id": "1e13dd25-50bd-4766-8b7f-937ae487b803", "name": "VK", "icons": [{"id": "3d5b6e1f-5caa-43bc-a486-6307ed7c0bce", "name": "VK", "type": "light"}]}]}, {"id": "3eea282c-11ee-4cdc-9f8c-b3262e3ba5d3", "name": "Simon Fraser University", "tags": ["sfu"], "issuers": [], "match_rules": [{"text": "Simon Fraser University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Simon Fraser University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cec464d3-1eee-4781-ba8f-128f7962ce36", "name": "Simon Fraser University", "icons": [{"id": "b35c8651-1d65-42f1-987e-8ac9f533b616", "name": "Simon Fraser University", "type": "light"}]}]}, {"id": "3eee1a70-692e-4105-8db8-3628a7b6a590", "name": "Todoist", "tags": [], "issuers": ["Todoist"], "match_rules": null, "icons_collections": [{"id": "d45ead47-367b-44c0-b258-69d73ff7443c", "name": "Todoist", "icons": [{"id": "7cbc84ab-a00b-46a5-97f5-a73e614c45be", "name": "Todoist", "type": "light"}]}]}, {"id": "3f2fa321-996e-403a-86cf-620895f27232", "name": "Saweria", "tags": [], "issuers": [], "match_rules": [{"text": "Saweria", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Saweria", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "83bcb421-c30d-44db-a623-83da237ecdc7", "name": "Saweria", "icons": [{"id": "72c29283-d95b-4796-80cc-5c0ed688c96b", "name": "Saweria", "type": "light"}]}]}, {"id": "3fb70080-e145-4691-ae07-2c7fb665a55e", "name": "POEditor", "tags": [], "issuers": [], "match_rules": [{"text": "POEditor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "POEditor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5c26e978-b591-41b0-be5a-d71d1d0fb529", "name": "POEditor", "icons": [{"id": "3742f085-8100-460b-9b08-480bf262340c", "name": "POEditor", "type": "light"}]}]}, {"id": "3fd6917b-0eb2-4306-b4b1-000256f61977", "name": "Onelogin", "tags": [], "issuers": ["Onelogin"], "match_rules": [], "icons_collections": [{"id": "03233892-479f-4f72-beaa-653b53c3ec03", "name": "Onelogin", "icons": [{"id": "79932352-a259-4ded-87f6-559406e824a3", "name": "Onelogin", "type": "light"}, {"id": "fe4bf606-fdd5-4990-bcda-e66f2ab29f71", "name": "Onelogin", "type": "dark"}]}]}, {"id": "3ff93c0f-1021-4bec-b9ce-16daed01097f", "name": "Internet.bs", "tags": [], "issuers": [], "match_rules": [{"text": "Internet.bs", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Internet.bs", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1bef4744-be54-4818-9f13-7a8c2b8b27f5", "name": "Internet.bs", "icons": [{"id": "02a7786c-27ab-4d31-bb81-e57f310d536b", "name": "internet.bs", "type": "dark"}, {"id": "e6f79b8b-387e-469f-9165-dc77c66419bb", "name": "Internet.bs", "type": "light"}]}]}, {"id": "400f455c-9803-4762-b738-a3a8d5d4aae6", "name": "Automater", "tags": [], "issuers": [], "match_rules": [{"text": "Automater", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Automater", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7b12a076-9692-4602-a1f9-caf422bd8d17", "name": "Automater", "icons": [{"id": "1fccdc30-5bc3-4f95-ab05-f18c8c20e4ce", "name": "Automater", "type": "light"}]}]}, {"id": "4013e738-f87e-46ef-b5b1-16b617dcbbef", "name": "Exante", "tags": [], "issuers": [], "match_rules": [{"text": "Exante", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Exante", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eb520f59-1338-4cf5-a4d1-d00d1bace358", "name": "Exante", "icons": [{"id": "cb386765-41b5-411c-a4f7-1a8dac1ddaeb", "name": "Exante", "type": "light"}]}]}, {"id": "40a839ea-9c44-4959-9e31-de18b01001a5", "name": "SmartSimple", "tags": [], "issuers": [], "match_rules": [{"text": "SmartSimple", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SmartSimple", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9139058a-0705-45f6-8d2d-5063523d8574", "name": "SmartSimple", "icons": [{"id": "b00c0afb-e79f-4c17-a0ba-0fcd6382cd03", "name": "SmartSimple", "type": "light"}]}]}, {"id": "40ff4402-35bb-44a3-a17f-5c947c6d6f61", "name": "IronVest", "tags": [], "issuers": [], "match_rules": [{"text": "IronVest", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IronVest", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7624b4a3-3d4e-4c5d-aa04-e203c6570258", "name": "IronVest", "icons": [{"id": "3ba251dc-ef29-4442-8a91-338e215eed96", "name": "IronVest", "type": "light"}, {"id": "6036f308-ef9f-4a40-907c-f6b5ab622cb3", "name": "IronVest", "type": "dark"}]}]}, {"id": "413a4cc5-ba05-4004-bc54-06df1a671926", "name": "Matomo", "tags": ["analytics"], "issuers": [], "match_rules": [{"text": "Matomo Analytics", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "c5d27bfb-74ac-4459-9c73-2e58a106ade3", "name": "Matomo", "icons": [{"id": "7a1092db-7ffc-481c-89f3-09a911058acb", "name": "Matomo", "type": "light"}]}]}, {"id": "413fa284-2dbf-476a-8bc9-9748635e60a7", "name": "Revolt Chat", "tags": [], "issuers": [], "match_rules": [{"text": "Revolt Chat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Revolt Chat", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Revolt(\\+|\\s|-|_)Chat", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Revolt(\\+|\\s|-|_)Chat", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "4376107b-654e-450f-9baf-780e0bca7a94", "name": "Revolt Chat", "icons": [{"id": "363ba80b-ed0a-4ffe-be4d-88f7cc763212", "name": "Revolt Chat", "type": "light"}]}]}, {"id": "41c87975-a000-4e3a-81cf-ac9e4804d015", "name": "Galaxus", "tags": [], "issuers": [], "match_rules": [{"text": "Galaxus", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Galaxus", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "41f92f5a-9934-4d4c-aa09-2b7fd4927a79", "name": "Galaxus", "icons": [{"id": "619afbd6-a6ed-4939-9de0-3c2f5ffe0d95", "name": "Galaxus", "type": "light"}, {"id": "c1b0872b-9b28-41e8-a457-b9a14f67d979", "name": "Galaxus", "type": "dark"}]}]}, {"id": "41ce1d02-78b1-4bb6-8b80-c1b76b694f19", "name": "Freewallet", "tags": [], "issuers": [], "match_rules": [{"text": "Freewallet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Freewallet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "654f8e2e-6c24-4f05-9e93-b7c1df97815f", "name": "Freewallet", "icons": [{"id": "0b0b0c2b-4e56-4010-b2de-63b755163a2d", "name": "Freewallet", "type": "light"}]}]}, {"id": "42593b53-c9d8-4a52-812f-02712eb4bbe9", "name": "Panda Security", "tags": [], "issuers": [], "match_rules": [{"text": "Panda Security", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Panda Security", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Panda(\\+|\\s|-|_)Security", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Panda(\\+|\\s|-|_)Security", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "45318d88-91e4-43dc-94b7-8a8b26667c22", "name": "Panda Security", "icons": [{"id": "1ac6533d-d1ff-4ad6-b0cb-3c47438d5c37", "name": "Panda Security", "type": "light"}]}]}, {"id": "427b8a65-de62-4ff4-8d75-9895148d4617", "name": "Logi ID", "tags": ["Logitech"], "issuers": ["Logi ID"], "match_rules": null, "icons_collections": [{"id": "208506a6-f088-4349-83de-aa0b61d3f995", "name": "Logi ID", "icons": [{"id": "a1c9c81b-88c6-4614-b889-ec6cd757db40", "name": "Logi ID", "type": "light"}]}]}, {"id": "42822f00-e91f-400c-9693-24a9faa52a58", "name": "Stessa", "tags": [], "issuers": [], "match_rules": [{"text": "Stessa", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Stessa", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6bace99a-bfb9-4236-bdf9-2429249b206e", "name": "Stessa", "icons": [{"id": "a2e132f2-7ca3-42e1-85b6-42ff8a825653", "name": "Stessa", "type": "light"}]}]}, {"id": "42bdf635-f73f-467f-ab80-a8ff816d1847", "name": "Substack", "tags": [], "issuers": [], "match_rules": [{"text": "Substack", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Substack", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "76ef4741-f056-4b68-8e1e-2b9ff467cbbf", "name": "Substack", "icons": [{"id": "7c3ec23c-f18a-491d-9323-217c8d193124", "name": "Substack", "type": "light"}]}]}, {"id": "42f378b1-6821-42ba-8b6e-6a1cf60bb958", "name": "Acronis", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "ca81ae1f-20f6-45d2-bbef-24ba47adab79", "name": "Acronis", "icons": [{"id": "1aa2236d-3780-487a-aeec-ed9ce2282e55", "name": "Acronis", "type": "dark"}, {"id": "6eec24da-2051-4555-b7ab-23aac0247a64", "name": "Acronis", "type": "light"}]}]}, {"id": "433319c3-646f-498c-924d-28fd952c0904", "name": "Republic", "tags": [], "issuers": [], "match_rules": [{"text": "Republic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Republic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6fced2f9-550e-4e85-b98d-a26dd1d2768d", "name": "Republic", "icons": [{"id": "f14b5ba1-a463-4577-8880-3b622c1252c0", "name": "Republic", "type": "light"}]}]}, {"id": "43dc2d2c-b446-498e-9daa-7b1bd398eb23", "name": "Discogs", "tags": [], "issuers": [], "match_rules": [{"text": "Discogs", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Discogs", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bdb9c5a2-7f48-4cb9-851f-b4b970ce48e7", "name": "Discogs", "icons": [{"id": "09cb9c31-5357-4f2a-b9e0-dc275e7ec2dd", "name": "Discogs", "type": "dark"}, {"id": "bb331d71-c8e9-4bbc-84be-6977a725959a", "name": "Discogs", "type": "light"}]}]}, {"id": "43fcc22a-8688-4ae7-9155-2bf49d532439", "name": "Newgrounds", "tags": [], "issuers": [], "match_rules": [{"text": "Newgrounds", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Newgrounds", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77872e40-dcdb-40fc-89b0-c2fd645ca495", "name": "Newgrounds", "icons": [{"id": "a550d4d4-9ab2-4556-9c28-28ffa898ea3b", "name": "Newgrounds", "type": "light"}]}]}, {"id": "442122c4-836c-447a-a781-f4ab137af75c", "name": "hellostake.com", "tags": ["stake"], "issuers": ["Stake"], "match_rules": null, "icons_collections": [{"id": "04e3c048-1f30-45f6-9e83-2a44602a1d0a", "name": "hellostake.com", "icons": [{"id": "5751359a-28ea-4a1b-985d-e093a76a50e5", "name": "Hellostake", "type": "light"}, {"id": "c2edb5bf-c3ea-4d8f-a287-5fa93435765e", "name": "Hellostake", "type": "dark"}]}]}, {"id": "44236c0b-5cc4-4aac-ab01-30cab1ec276d", "name": "Planning Center", "tags": [], "issuers": [], "match_rules": [{"text": "Planning Center", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Planning Center", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7380ff3e-a922-4acb-a989-c0b22e43d500", "name": "Planning Center", "icons": [{"id": "a0b3b71b-70bc-480e-9569-ec57d8a64bb4", "name": "Planning Center", "type": "light"}]}]}, {"id": "445140b7-d5c0-49d6-9c30-cb24e580058b", "name": "Icedrive", "tags": [], "issuers": ["Icedrive"], "match_rules": null, "icons_collections": [{"id": "7fffe036-01b2-4c2d-b739-bcdbb76395c7", "name": "Icedrive", "icons": [{"id": "e425c492-db9c-4177-87d0-375d666649f3", "name": "Icedrive", "type": "light"}]}]}, {"id": "44525ac7-0e28-4cd7-896f-7d9de3cdc2a7", "name": "RealMe", "tags": [], "issuers": [], "match_rules": [{"text": "RealMe", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RealMe", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2cc80ac1-879e-43db-90f9-12a3a97b5151", "name": "RealMe", "icons": [{"id": "13f8deb3-ca90-4b94-950c-1b5dc0b2d53a", "name": "RealMe", "type": "light"}, {"id": "3f2f34f4-afea-4bae-9862-0bc179115d91", "name": "RealMe", "type": "dark"}]}]}, {"id": "44e15d6c-665f-4c6a-a1a4-b5a34b292a85", "name": "Too Lost", "tags": [], "issuers": [], "match_rules": [{"text": "toolost.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "d8af5afe-0f77-4675-81ed-ea3c27ecb14b", "name": "Too Lost", "icons": [{"id": "375d8fc7-f1b9-44bc-a252-1633386432ba", "name": "Too Lost", "type": "light"}]}]}, {"id": "450cab07-490e-4645-a336-126a798314ae", "name": "Kraken", "tags": [], "issuers": ["kraken.com"], "match_rules": [], "icons_collections": [{"id": "96d6723e-b5d2-4b90-9ce3-bccb3f919642", "name": "Kraken", "icons": [{"id": "10a4ddaf-b0f9-4a30-8e60-3b9dae01de11", "name": "Kraken", "type": "dark"}, {"id": "7218bb8e-f2a8-49dc-a1fa-cccf92294f78", "name": "Kraken", "type": "light"}]}]}, {"id": "4540cdf9-ce81-48bc-b57e-9eb508d69e8d", "name": "Plurk", "tags": [], "issuers": [], "match_rules": [{"text": "Plurk", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Plurk", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "68824e4c-a24a-4507-9d48-9b22ec882e96", "name": "Plurk", "icons": [{"id": "68fc76ea-ac05-4aea-9cf5-e8a5dbe31296", "name": "Plurk", "type": "light"}]}]}, {"id": "454c421a-faa8-4c01-bece-36f876d36067", "name": "Panther", "tags": [], "issuers": [], "match_rules": [{"text": "Panther", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Panther", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a428f16f-9bd9-4ec4-b303-201b96f63b5d", "name": "Panther", "icons": [{"id": "45dd0304-9b84-47a1-aba6-103fba452800", "name": "Panther", "type": "light"}]}]}, {"id": "454f77f3-c3b6-421b-8bb2-f2f0d627139f", "name": "Cash App", "tags": [], "issuers": [], "match_rules": [{"text": "Cash App", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "CashApp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f2bc2c98-a5bf-4be8-948c-28693d1600ea", "name": "Cash App", "icons": [{"id": "8fbffd24-7fb2-4a2f-b15a-a026361a16ea", "name": "Cash App", "type": "light"}]}]}, {"id": "45741eb0-3388-4d54-8816-20a4bba036eb", "name": "Zoom", "tags": [], "issuers": ["Zoom"], "match_rules": [], "icons_collections": [{"id": "8e3326a2-13c9-49bb-b28d-c4465b0ce62d", "name": "Zoom", "icons": [{"id": "e9f019ab-034f-4e2c-904b-f649961fc640", "name": "Zoom", "type": "light"}]}]}, {"id": "45947c40-6a26-4ce1-b820-4dcbb65ae9cd", "name": "Piwik PRO", "tags": [], "issuers": [], "match_rules": [{"text": "Piwik PRO", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Piwik PRO", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fe503092-f163-4640-ae33-ec10f8172c3f", "name": "Piwik PRO", "icons": [{"id": "12efcaa9-5099-4045-8311-ae26c7853bd6", "name": "Piwik PRO", "type": "dark"}, {"id": "aa92be93-5acd-4795-9fc1-fe9869c72777", "name": "Piwik PRO", "type": "light"}]}]}, {"id": "45a393e8-7a18-4734-9689-3d9a55acd8af", "name": "Gaijin Entertainment", "tags": [], "issuers": [], "match_rules": [{"text": "Gaijin Entertainment", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Gaijin Entertainment", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9f0cbeba-a09d-42d1-b9d2-79881cc95e45", "name": "Gaijin Entertainment", "icons": [{"id": "6c1febf2-2650-4d61-899b-e70c497096a6", "name": "Gaijin Entertainment", "type": "dark"}, {"id": "9e2a6ecc-43b9-4a72-b746-9a07412b77df", "name": "Gaijin Entertainment", "type": "light"}]}]}, {"id": "45c3b05a-f0d2-462b-b910-c3dc6e3db303", "name": "Rebel.com", "tags": [], "issuers": [], "match_rules": [{"text": "Rebel.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rebel.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3dcc63ad-04a8-4259-8641-e96082bce459", "name": "Rebel.com", "icons": [{"id": "097616eb-ba0a-4539-a42e-d07b40ce97d1", "name": "Rebel.com", "type": "light"}]}]}, {"id": "466e78fa-b2ba-4142-a757-78b040f54759", "name": "Audiense", "tags": [], "issuers": [], "match_rules": [{"text": "Audiense", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Audiense", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8d9f31da-549d-44d6-83bb-2d2fb6446c47", "name": "Audiense", "icons": [{"id": "d64c8190-c23a-4588-8700-85b702ecd2c9", "name": "Audiense", "type": "light"}, {"id": "d8a85ad0-84a5-484c-8377-f72b8fe9d05d", "name": "Audiense", "type": "dark"}]}]}, {"id": "469c0889-1239-493d-91cf-fd4eb360d27a", "name": "Line 6", "tags": [], "issuers": [], "match_rules": [{"text": "Line 6", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Line 6", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "82b80c69-8e1d-4509-8f40-501754838a00", "name": "Line 6", "icons": [{"id": "b7b1fd7f-bff1-48de-9cf3-e48ea0f64e77", "name": "Line 6", "type": "light"}]}]}, {"id": "46d677ea-9678-4d03-a737-d53750c97f91", "name": "Ubuntu", "tags": [], "issuers": [], "match_rules": [{"text": "UbuntuSSO", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dbf20573-1304-4d12-be11-13c590ff1fc1", "name": "Ubuntu", "icons": [{"id": "11ed2921-5ba3-40bb-97bd-0e38899b8f52", "name": "Ubuntu", "type": "light"}]}]}, {"id": "46f76ad5-2539-45a8-a765-0648251c4d8f", "name": "MacStadium", "tags": [], "issuers": [], "match_rules": [{"text": "MacStadium", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "MacStadium", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f31a67f1-59f7-4f7b-859a-671101df8103", "name": "MacStadium", "icons": [{"id": "0955ae60-66df-4b3d-bc1f-1d3a27ef920d", "name": "MacStadium", "type": "dark"}, {"id": "1dfc4a8a-7050-40c2-8751-141c9a2ba7ea", "name": "MacStadium", "type": "light"}]}]}, {"id": "4711736b-490b-4ebd-b793-f16a3ad6fbda", "name": "Adyen", "tags": [], "issuers": [], "match_rules": [{"text": "Adyen", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Adyen", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85c74031-9bc7-40c2-98f1-a7f0e5242af6", "name": "Adyen", "icons": [{"id": "4d53cded-bb18-45d8-9fa6-5b70f8eb7a55", "name": "Adyen", "type": "light"}]}]}, {"id": "4729495c-003a-40c2-a879-16dc1a770137", "name": "Coinzilla", "tags": [], "issuers": [], "match_rules": [{"text": "Coinzilla", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinzilla", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f5cbf46b-7412-4cbb-87c3-7098d3dae6c2", "name": "Coinzilla", "icons": [{"id": "32349a09-65c2-4efb-8319-4eb1642cedb6", "name": "Coinzilla", "type": "light"}]}]}, {"id": "473b0856-b105-4f77-b7ef-f5bf4529837c", "name": "NiceHash Withdraw", "tags": [], "issuers": ["NiceHash - withdraw"], "match_rules": [], "icons_collections": [{"id": "c8019718-56b2-406f-bf21-2addda6b21fd", "name": "NiceHash", "icons": [{"id": "cb0edba6-9027-49cc-b99d-1b31041e5073", "name": "NiceHash Buying", "type": "light"}]}]}, {"id": "47a0bc03-4e73-411f-b8a9-58d6da692b31", "name": "TaxHawk", "tags": [], "issuers": [], "match_rules": [{"text": "TaxHawk", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TaxHawk", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9ef96f7a-1583-4bc3-be44-23f28232a291", "name": "TaxHawk", "icons": [{"id": "1d6c6e02-a2f9-4fb8-bd5d-fd501f4c650d", "name": "TaxHawk", "type": "dark"}, {"id": "cf938f40-b4be-41f1-aa71-1dcf92b7ae66", "name": "TaxHawk", "type": "light"}]}]}, {"id": "47d060c2-2ce2-444a-95d1-4dbed7d0daff", "name": "RU-CENTER", "tags": [], "issuers": [], "match_rules": [{"text": "RU-CENTER", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RU-CENTER", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3faf2674-15dc-4035-8113-f60aa7164c9d", "name": "RU-CENTER", "icons": [{"id": "419a4c45-ce49-43f0-bffc-23dc67863088", "name": "RU-CENTER", "type": "light"}]}]}, {"id": "47f41598-2809-4bfe-b3e2-03cd0d5f754a", "name": "OneDrive", "tags": ["Microsoft", "ms"], "issuers": [], "match_rules": [{"text": "OneDrive", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OneDrive", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c505749d-8a09-4c96-88b0-996baf250924", "name": "OneDrive", "icons": [{"id": "20805ba0-e1f3-4b89-8a36-15397b165b22", "name": "OneDrive", "type": "light"}]}]}, {"id": "48114b57-27be-4ac8-8e7e-fb38a8df905d", "name": "Air France", "tags": [], "issuers": [], "match_rules": [{"text": "Air France", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Air France", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Air(\\+|\\s|-|_)France", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Air(\\+|\\s|-|_)France", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "758fab8c-9824-4b3a-8d3f-2e20c18d0d7a", "name": "Air France", "icons": [{"id": "7bfc8adb-4774-4ceb-9613-ddb4ac565444", "name": "Air France", "type": "light"}]}]}, {"id": "481437e0-6b0c-4289-98ea-ed30ac4d5a0f", "name": "Mathworks", "tags": [], "issuers": ["Mathworks"], "match_rules": null, "icons_collections": [{"id": "69123308-c433-4acb-a876-d5045d25cc83", "name": "Mathworks", "icons": [{"id": "2665d492-c2ea-44dd-8e3b-708f16c89e6f", "name": "Mathworks", "type": "light"}]}]}, {"id": "48223642-089d-4e35-97da-4fbc4ba81c35", "name": "PyPI", "tags": [], "issuers": ["PyPI"], "match_rules": [], "icons_collections": [{"id": "eccafcdf-9e15-47d8-84c9-7da00d236135", "name": "PyPI", "icons": [{"id": "e5c1ce9d-61db-4cdc-9f52-9b297a22d010", "name": "PyPI", "type": "light"}]}]}, {"id": "486fbb7b-ff24-46df-9365-a2332edab0b4", "name": "Elastic Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "Elastic Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Elastic Cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9eac4de4-8d10-4f4e-8795-2571f828fc0b", "name": "Elastic Cloud", "icons": [{"id": "9fbb3a34-a984-45e4-b316-5ec7b751b006", "name": "Elastic Cloud", "type": "light"}]}]}, {"id": "48bf8471-b319-45fd-a1c7-f9f6ce17f6b9", "name": "Twitter (now X)", "tags": ["x", "twitter"], "issuers": [], "match_rules": [], "icons_collections": [{"id": "8f31632c-93a6-4cb6-ad14-d26ea6d96c95", "name": "Twitter (now X)", "icons": [{"id": "bf7562e9-19c3-4df7-87e7-8a9696d9dda6", "name": "Twitter", "type": "light"}]}]}, {"id": "48bf9f6a-f64c-40f5-9429-d41325d2304f", "name": "IT Glue", "tags": [], "issuers": [], "match_rules": [{"text": "IT Glue", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IT Glue", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2874a11c-beb5-452e-9b4f-156876168e87", "name": "IT Glue", "icons": [{"id": "0b221003-67ab-4eb5-982a-48a989d9b6a4", "name": "IT Glue", "type": "dark"}, {"id": "bc3f24ca-de8d-4daa-b799-f10eda5eff20", "name": "IT Glue", "type": "light"}]}]}, {"id": "48e8f3ce-2efd-4e4b-82fd-3d638b01f600", "name": "Kuna", "tags": [], "issuers": [], "match_rules": [{"text": "Kuna", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Kuna", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0b00b2f7-00a1-4fbd-9335-ce625dd6403f", "name": "Kuna", "icons": [{"id": "ced16260-4b19-40df-a8eb-ca7851765617", "name": "Kuna", "type": "light"}]}]}, {"id": "48fec849-1d85-4fc3-a956-140d07b00406", "name": "Migros", "tags": [], "issuers": [], "match_rules": [{"text": "Migros", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Migros", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c8f93bdc-9fb4-4ca7-a8da-0c66e07f2e25", "name": "Migros", "icons": [{"id": "5a1689cb-b7ae-4b9a-a6c5-d1e664708420", "name": "Migros", "type": "light"}]}]}, {"id": "490203bb-8a1b-48f6-8150-1667071489bf", "name": "Hostek", "tags": [], "issuers": [], "match_rules": [{"text": "Hostek", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hostek", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db5959bc-e851-467f-8131-dd5f61ebe31a", "name": "Hostek", "icons": [{"id": "188bd9e8-6ccf-49ba-9009-1f002e72f470", "name": "Hostek", "type": "light"}]}]}, {"id": "4925503b-cabb-4367-bbf7-152e866d28e2", "name": "Laravel Vapor", "tags": [], "issuers": [], "match_rules": [{"text": "Laravel Vapor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Laravel Vapor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eecf3530-b758-4680-a8d4-d4a857c472b5", "name": "Laravel Vapor", "icons": [{"id": "0d156eae-f9b0-4b2e-b43b-7e98ac5cffcc", "name": "Laravel Vapor", "type": "light"}]}]}, {"id": "49489e88-b233-4a79-8069-e41b55036f29", "name": "Travala", "tags": [], "issuers": [], "match_rules": [{"text": "Travala", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Travala", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db974d03-37c0-4bb0-a3e1-c662fc8fba3a", "name": "Travala", "icons": [{"id": "a7a835aa-f965-44c1-b3b2-0d181c8dca0c", "name": "Travala", "type": "light"}]}]}, {"id": "494fa111-ccd8-4eef-8d4f-47b490ef363c", "name": "Okta", "tags": [], "issuers": [], "match_rules": [{"text": "Okta", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Okta", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f67e6179-6184-4ddf-959b-a2fe39432bcc", "name": "Okta", "icons": [{"id": "197d9277-61f2-4110-8438-9cfee3a59d55", "name": "Okta", "type": "dark"}, {"id": "c3fb98ed-7876-40cd-ac65-3b081359649d", "name": "Okta", "type": "light"}]}]}, {"id": "49a043d8-9ec6-4866-b338-e0d73b26ecd4", "name": "Splashtop", "tags": [], "issuers": [], "match_rules": [{"text": "Splashtop", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Splashtop", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b59dd6f5-9532-4c84-b303-01e2941f9970", "name": "Splashtop", "icons": [{"id": "e83b6998-869b-4295-83ce-b1d12fe993f0", "name": "Splashtop", "type": "light"}]}]}, {"id": "49b24dc4-2520-4bac-a7d7-f2095ed6c815", "name": "FanDuel", "tags": [], "issuers": [], "match_rules": [{"text": "FanDuel", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FanDuel", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ba1c5e3f-7f33-4417-9156-2e581d63dd68", "name": "FanDuel", "icons": [{"id": "f3fce4ca-b524-494f-a607-22898bacb8ab", "name": "FanDuel", "type": "light"}]}]}, {"id": "49b75004-2ee0-46de-934e-f62e9271bd02", "name": "Synology", "tags": [], "issuers": ["Synology DSM", "Synology Account"], "match_rules": [], "icons_collections": [{"id": "1287cdab-814b-469f-a718-8c7775643099", "name": "Synology", "icons": [{"id": "c244efdd-f79f-434f-b17e-40c3b1b12258", "name": "Synology", "type": "dark"}, {"id": "f37c6a33-bb1e-45bf-9e68-5cb7c99fc90c", "name": "Synology", "type": "light"}]}]}, {"id": "49d3aed6-6ef9-4e9b-a9db-95e767145274", "name": "Honeybadger", "tags": [], "issuers": [], "match_rules": [{"text": "Honeybadger", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Honeybadger", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f27d50a0-5b21-40ea-8b59-a1ca1daae30f", "name": "Honeybadger", "icons": [{"id": "d43ea869-9e07-4d34-8c47-060041907e5f", "name": "Honeybadger", "type": "light"}]}]}, {"id": "4a1f455e-cef7-443f-b1c0-3c50527cc068", "name": "SpectroCoin", "tags": [], "issuers": [], "match_rules": [{"text": "SpectroCoin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SpectroCoin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9e47d2e-344a-4f63-a2ca-fc93fca70d59", "name": "SpectroCoin", "icons": [{"id": "4c6e005c-31e3-484d-bbb4-0a71d9cb8090", "name": "SpectroCoin", "type": "dark"}, {"id": "e1b4a15e-06b6-4f88-9ee5-892b0af9d57b", "name": "SpectroCoin", "type": "light"}]}]}, {"id": "4a2b1fb8-6de0-469b-a751-dc44ea1dfb20", "name": "Exmo", "tags": [], "issuers": [], "match_rules": [{"text": "Exmo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Exmo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "24fb2716-711e-485d-8857-cc3a882c95e1", "name": "Exmo", "icons": [{"id": "4f9bdf4b-97a5-46b1-b8af-834fc84dc7c4", "name": "Exmo", "type": "light"}]}]}, {"id": "4a397626-7137-4aa7-85ba-79515b8ed0d3", "name": "Particle", "tags": [], "issuers": [], "match_rules": [{"text": "Particle", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Particle", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a7fba7af-35d1-486c-b664-c38211c10e53", "name": "Particle", "icons": [{"id": "dea31e57-8523-4eb2-b79d-043094a10885", "name": "Particle", "type": "light"}]}]}, {"id": "4a3f552c-99fb-42c8-b1bf-57628b2fdb57", "name": "Sipgate", "tags": [], "issuers": ["sipgate"], "match_rules": null, "icons_collections": [{"id": "0a1bcfe8-c98d-48ef-9450-731e34343ee5", "name": "Sipgate", "icons": [{"id": "99ab33d9-c9df-446a-8903-86c2ecb76d74", "name": "Sipgate", "type": "light"}, {"id": "f2cbe22f-daf0-4bf9-a4a0-ef0e1f0ccb83", "name": "Sipgate", "type": "dark"}]}]}, {"id": "4a476833-3773-43d3-94a6-4556e0a776ac", "name": "Vysok\u00e1 \u0161kola ekonomick\u00e1 v Praze", "tags": [], "issuers": [], "match_rules": [{"text": "Vysok\u00e1 \u0161kola ekonomick\u00e1 v Praze", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Vysok\u00e1 \u0161kola ekonomick\u00e1 v Praze", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "248a84e0-5b72-4b81-bb4e-32d4698eb4ea", "name": "Vysok\u00e1 \u0161kola ekonomick\u00e1 v Praze", "icons": [{"id": "20d07cd7-e4c9-4da4-97ae-0e096eb34797", "name": "Vysok\u00e1 \u0161kola ekonomick\u00e1 v Praze", "type": "light"}]}]}, {"id": "4ab1a935-47b2-4655-a807-6b925de0e77e", "name": "Mint Mobile", "tags": ["Ryan", "Reynolds"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "bca2b91d-a005-40e5-803c-b38012995f6c", "name": "Mint Mobile", "icons": [{"id": "724744ef-7542-43e4-a3fd-332e4298b713", "name": "Mint Mobile", "type": "light"}]}]}, {"id": "4ad7ce16-c64d-4f18-b009-30a270dc782a", "name": "OVH", "tags": [], "issuers": [], "match_rules": [{"text": "Ovh", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "df17680c-b7e9-461b-820d-c62c2c8073df", "name": "OVH", "icons": [{"id": "d1d2f3a7-3270-4a0a-ae9d-fad4c36ca5a3", "name": "OVH", "type": "light"}, {"id": "ff7fa1fc-d2ca-46f0-bad5-08c480fec60d", "name": "OVH", "type": "dark"}]}]}, {"id": "4ae6bfef-0003-446c-9fc8-e0a03dd84163", "name": "WazirX", "tags": [], "issuers": ["WazirX"], "match_rules": [], "icons_collections": [{"id": "fd806401-613d-44d2-b170-79b9dee2c024", "name": "WazirX", "icons": [{"id": "46e30c7d-f76c-4cc9-9a80-e54a87e81522", "name": "WazirX", "type": "dark"}, {"id": "5274aab4-fa6c-41b5-bc1f-31f422810b80", "name": "WazirX", "type": "light"}]}]}, {"id": "4b17ec04-aa22-4003-bac6-6db088923060", "name": "State Bank of India", "tags": [], "issuers": [], "match_rules": [{"text": "State Bank of India", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "State Bank of India", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "State(\\+|\\s|-|_)Bank(\\+|\\s|-|_)of(\\+|\\s|-|_)India", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "State(\\+|\\s|-|_)Bank(\\+|\\s|-|_)of(\\+|\\s|-|_)India", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "a21a0d12-34fd-4d2f-a2c3-93516cc80369", "name": "State Bank of India", "icons": [{"id": "4ebeeba6-00cc-4eff-b383-d72e67eea299", "name": "State Bank of India", "type": "light"}]}]}, {"id": "4b418e68-2fa3-4818-8609-66e1e403568b", "name": "Assembla", "tags": [], "issuers": [], "match_rules": [{"text": "Assembla", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Assembla", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "16bc63b0-96b8-44d2-a502-e96c8e81329b", "name": "Assembla", "icons": [{"id": "d5a92ba9-3ceb-4fa2-b929-3c35e5a7638a", "name": "Assembla", "type": "dark"}, {"id": "ddb1c8b2-fb68-489d-b66a-ce3a30aa096b", "name": "Assembla", "type": "light"}]}]}, {"id": "4b45316d-aff6-4653-b089-bcbf553d9649", "name": "ReelCrafter", "tags": [], "issuers": ["ReelCrafter"], "match_rules": null, "icons_collections": [{"id": "a5c7a549-cbdb-43df-bbfd-95b3867aaf2c", "name": "ReelCrafter", "icons": [{"id": "0f020b79-3940-4acd-a4b0-dfd382ffefbb", "name": "ReelCrafter", "type": "dark"}, {"id": "1b02edd8-cd2e-4dd8-8b57-c8736c2e62d1", "name": "ReelCrafter", "type": "light"}]}]}, {"id": "4bcfde28-d843-4592-bb3e-251bb8c4ae08", "name": "Netcore Cloud Email API", "tags": [], "issuers": [], "match_rules": [{"text": "Netcore Cloud Email API", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Netcore Cloud Email API", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b7c7550a-f6d7-4204-929c-6006ad8207d9", "name": "Netcore Cloud Email API", "icons": [{"id": "bff3388f-f6e3-4b8f-ba59-78d4da9cff5d", "name": "Netcore Cloud Email API", "type": "light"}]}]}, {"id": "4bf34a65-2279-4da0-980d-0d1bb5a383b2", "name": "Airship", "tags": [], "issuers": [], "match_rules": [{"text": "Airship", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Airship", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d7b81ed8-7b51-40bc-bb4e-4b465e6ebb73", "name": "Airship", "icons": [{"id": "43766925-98f8-45c8-a617-efdfb7490d50", "name": "Airship", "type": "light"}]}]}, {"id": "4c1faa51-fefb-4ab5-9201-c54b794d32ba", "name": "Zendesk", "tags": [], "issuers": ["Zendesk"], "match_rules": [], "icons_collections": [{"id": "96f65174-f24d-4a85-a89e-89fcf4cc7ee3", "name": "Zendesk", "icons": [{"id": "4253fe5f-7a7e-4ec0-bb7a-5c8d56a50b68", "name": "Zendesk", "type": "dark"}, {"id": "abb2529a-53a3-4db1-a394-a6e4d58c4379", "name": "Zendesk", "type": "light"}]}]}, {"id": "4c30fd57-21b4-4d16-88f8-97738da0339d", "name": "AppSignal", "tags": [], "issuers": [], "match_rules": [{"text": "AppSignal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AppSignal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "42135c3a-a24e-48f9-9bbd-1f1428ec2bc8", "name": "AppSignal", "icons": [{"id": "52a80bfb-60b0-4cb2-ada2-fd7a57728807", "name": "AppSignal", "type": "light"}, {"id": "b0a8bab6-2f0b-443e-ab4f-a1d20e082d09", "name": "AppSignal", "type": "dark"}]}]}, {"id": "4c9652f3-131c-4c3d-82fb-ac491d8bc843", "name": "Greenhost", "tags": [], "issuers": [], "match_rules": [{"text": "Greenhost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Greenhost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8510864a-b571-4414-9248-f76bcede8c0c", "name": "Greenhost", "icons": [{"id": "11d4eaf4-8808-4b6c-9a37-d04419279dda", "name": "Greenhost", "type": "light"}]}]}, {"id": "4cb1849d-650c-48ff-bd99-420859f3d1c8", "name": "EA", "tags": ["electronic", "arts", "electronicarts"], "issuers": ["Electronic Arts"], "match_rules": [], "icons_collections": [{"id": "0b032d00-41c4-4821-90a9-b18b8c27074a", "name": "EA", "icons": [{"id": "2e4b30f3-1aab-4252-96b6-9fcb943059bc", "name": "EA", "type": "light"}]}]}, {"id": "4cfadd11-c568-4c3a-b9e1-41903c45fc92", "name": "Zerodha Kite", "tags": [], "issuers": [], "match_rules": [{"text": "Zerodha Kite", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Zerodha Kite", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9b6bd9e2-8ea7-4931-b662-6b3c0eb1970f", "name": "Zerodha Kite", "icons": [{"id": "10169b31-cf3e-4388-9638-e6567bf79e82", "name": "Zerodha Kite", "type": "light"}]}]}, {"id": "4d04199d-70d2-41ee-bcd3-6196a01aaebc", "name": "Remitano", "tags": [], "issuers": [], "match_rules": [{"text": "Remitano", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Remitano", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b082aa72-3b6d-461f-966c-02fc2fd3d1bd", "name": "Remitano", "icons": [{"id": "bb14c1f0-a238-4b06-805b-9284ce0dc290", "name": "Remitano", "type": "light"}]}]}, {"id": "4d0e1409-8c94-40d5-ab71-1bba22bbdba1", "name": "Premier League", "tags": [], "issuers": ["Premier League"], "match_rules": null, "icons_collections": [{"id": "fbfc34b3-e267-42f9-a970-701c68ad217a", "name": "Premier League", "icons": [{"id": "05902763-1a73-4dc7-929a-906853a1e39b", "name": "Premier League", "type": "light"}, {"id": "8ddd9353-3a20-4f4a-978c-1a60641801c6", "name": "Premier League", "type": "dark"}]}]}, {"id": "4d1078f9-c4e1-40e8-bd7c-e8320f6094dc", "name": "Niconico", "tags": [], "issuers": [], "match_rules": [{"text": "Niconico", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Niconico", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "27b1435d-3069-458e-a359-8fc67db876d8", "name": "Niconico", "icons": [{"id": "56e00068-9f41-4df0-9243-8ba705228dc5", "name": "Niconico", "type": "light"}, {"id": "e03e6246-6cf3-443f-b331-39088ab3b1ac", "name": "Niconico", "type": "dark"}]}]}, {"id": "4d44d162-cbd1-4b7e-84e1-a4e8abd6c55d", "name": "ICDSoft", "tags": [], "issuers": [], "match_rules": [{"text": "ICDSoft", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ICDSoft", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "17ff04dd-3db1-4f51-b18b-28b102b175e5", "name": "ICDSoft", "icons": [{"id": "8449b122-89f7-42cf-b26d-16b13a50384b", "name": "ICDSoft", "type": "light"}]}]}, {"id": "4d4c7696-1a84-4c2f-9656-5abd6e66f3c2", "name": "Delinea", "tags": [], "issuers": [], "match_rules": [{"text": "Delinea", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Delinea", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6d18fd7f-1b69-42ab-89d9-b803236b96d7", "name": "Delinea", "icons": [{"id": "9614df75-0cac-4e68-aced-a76db6e18134", "name": "Delinea", "type": "light"}]}]}, {"id": "4d678469-1333-487c-9d06-6aab13081670", "name": "Shrimpy", "tags": [], "issuers": [], "match_rules": [{"text": "Shrimpy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Shrimpy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fb6ea39b-a1ca-41ab-9126-bf449dc83b2e", "name": "Shrimpy", "icons": [{"id": "f543ad12-4085-48be-9d11-b3db2253c526", "name": "Shrimpy", "type": "light"}]}]}, {"id": "4d6f4a49-5c21-4870-a4df-b85a70ba3ff9", "name": "Bonusly", "tags": [], "issuers": [], "match_rules": [{"text": "Bonusly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bonusly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0e74ed64-5615-4e75-95b5-2661cf3243e4", "name": "Bonusly", "icons": [{"id": "c2c06c12-e0aa-4703-b7b2-6e76cc43df10", "name": "Bonusly", "type": "light"}]}]}, {"id": "4d7f651d-7036-42e3-85ed-5559a0e3d11a", "name": "RevenueCat", "tags": [], "issuers": [], "match_rules": [{"text": "RevenueCat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RevenueCat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0ffd72a6-1921-4787-8210-b695f943eb28", "name": "RevenueCat", "icons": [{"id": "332dcb8c-8cbf-42d1-9a11-a4eb0e629fbf", "name": "RevenueCat", "type": "light"}]}]}, {"id": "4d921fe7-dad4-4657-86b3-5241123d624b", "name": "Taxact", "tags": [], "issuers": [], "match_rules": [{"text": "Taxact", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Taxact", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "84ca5690-5ed7-437e-a6cf-457526190654", "name": "Taxact", "icons": [{"id": "74f39319-958f-4981-8174-a3a230a67b77", "name": "Taxact", "type": "light"}]}]}, {"id": "4d9de830-f4cc-4469-8d1c-3d710e918693", "name": "Panic Sync", "tags": [], "issuers": [], "match_rules": [{"text": "Panic Sync", "field": "label", "matcher": "equals", "ignore_case": true}], "icons_collections": [{"id": "f5ca216c-23b7-4cf0-a3f0-4c0006439b5f", "name": "Panic Sync", "icons": [{"id": "ff87161e-deff-4450-97a7-3481b17b2d87", "name": "Panic", "type": "light"}]}]}, {"id": "4de72df8-7a74-45c3-b243-d21c70ed838b", "name": "SignRequest", "tags": [], "issuers": [], "match_rules": [{"text": "SignRequest", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SignRequest", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "98972c4b-0dd8-4e22-8316-7767f2788a6a", "name": "SignRequest", "icons": [{"id": "9bf03726-f502-4aec-923c-38043cd8ee31", "name": "SignRequest", "type": "dark"}, {"id": "fd482d68-a248-4811-bd91-c3d25ac3c060", "name": "SignRequest", "type": "light"}]}]}, {"id": "4e0da46d-51ae-40b0-9f3f-fa9ca9d80464", "name": "DMOJ", "tags": [], "issuers": [], "match_rules": [{"text": "DMOJ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DMOJ", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a57256e1-8fad-4e25-b499-157fc3c38986", "name": "DMOJ", "icons": [{"id": "e32b8629-a7f4-47de-bea4-1d6befc6fc6a", "name": "DMOJ", "type": "light"}]}]}, {"id": "4e16e9e4-55be-433e-922a-a13286096ce9", "name": "OnlyFans", "tags": ["of"], "issuers": [], "match_rules": [{"text": "onlyfans.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dc72a1a9-6dfa-4afa-8147-6c579f11c277", "name": "OnlyFans", "icons": [{"id": "9c953ae0-b21e-47a3-82f5-7dff6071d077", "name": "OnlyFans", "type": "light"}]}]}, {"id": "4e7a1659-0a8a-42d5-a699-30837aac73c4", "name": "Bitpanda", "tags": [], "issuers": [], "match_rules": [{"text": "Bitpanda", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "c20236ed-2e95-476c-b29c-f425d29826ef", "name": "Bitpanda", "icons": [{"id": "4b560ea0-64f3-4ab5-a2ea-28a40fd42aa8", "name": "Bitpanda", "type": "light"}, {"id": "51933475-9a89-4407-be25-6e387b1ac44c", "name": "Bitpanda", "type": "dark"}]}]}, {"id": "4e82c347-7ad9-4b73-bb4d-c6301eed0004", "name": "FreshDesk", "tags": [], "issuers": ["freshworks.com"], "match_rules": [{"text": "freshworks.com", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "05c680d8-bb2f-4ef0-840a-6504fcfdacb5", "name": "FreshDesk", "icons": [{"id": "daa0f095-578a-407b-bbb4-c4e23a11a045", "name": "FreshDesk", "type": "light"}]}]}, {"id": "4ea34b28-fb91-4dce-827a-dbb07d3ef7c3", "name": "IVPN", "tags": [], "issuers": [], "match_rules": [{"text": "IVPN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IVPN", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "62a15dd7-fa76-40e6-a82c-edff4bdf8449", "name": "IVPN", "icons": [{"id": "228793db-4780-487f-a058-f645299ed9b7", "name": "IVPN", "type": "light"}]}]}, {"id": "4edc11fd-948c-4b39-be92-1f76597c3e25", "name": "KLM", "tags": [], "issuers": ["KLM"], "match_rules": null, "icons_collections": [{"id": "dda07cc2-3b0c-46f4-8e02-2b805eb6dd85", "name": "KLM", "icons": [{"id": "847e8995-c548-434b-955f-1074dbe841c7", "name": "KLM", "type": "light"}]}]}, {"id": "4ee59893-9ba4-411c-a9fb-5906e1ebad8e", "name": "23andMe", "tags": [], "issuers": [], "match_rules": [{"text": "23andMe", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "23andMe", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cd8d168f-8ad3-4817-8099-794d4f7f45b2", "name": "23andMe", "icons": [{"id": "18192ea2-0050-4789-bc7b-b7f32cd3feff", "name": "23andMe", "type": "light"}]}]}, {"id": "4f0726cf-418e-402d-8400-afbfd772da7b", "name": "Bluehost", "tags": [], "issuers": [], "match_rules": [{"text": "bluehost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5e8235d7-d208-4c9c-8e3b-974d3149a682", "name": "bluehost", "icons": [{"id": "17e0e001-5040-4fec-9dc4-4fabef419e71", "name": "bluehost", "type": "dark"}, {"id": "ba9afc3e-77f7-4a38-9602-5c26946688fd", "name": "bluehost", "type": "light"}]}]}, {"id": "4f2a249a-eb12-48e7-bffc-a78bf7888d73", "name": "Box", "tags": [], "issuers": ["Box"], "match_rules": [], "icons_collections": [{"id": "9af46ee0-475d-41d6-a729-a8d930d16810", "name": "Box", "icons": [{"id": "09f37b9e-dc35-49dd-97a8-504dcf76f5c8", "name": "Box", "type": "light"}, {"id": "97e78591-d1f6-47dd-8f0e-69c84c2b57e2", "name": "Box", "type": "dark"}]}]}, {"id": "4fc36f56-15bd-4724-8c9f-32e7d6c37610", "name": "Capsule", "tags": [], "issuers": [], "match_rules": [{"text": "Capsule", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Capsule", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2a8076dc-b3d1-4b26-81a4-6e199c45ed43", "name": "Capsule", "icons": [{"id": "8dc2f0f5-4a73-435e-8eef-69f83b3d794a", "name": "Capsule", "type": "dark"}, {"id": "c150cb1d-1747-4889-8539-97aa5d7da8ec", "name": "Capsule", "type": "light"}]}]}, {"id": "4fca7ff1-cbf0-464c-9a37-e2cc5351eec6", "name": "Wiggle", "tags": [], "issuers": [], "match_rules": [{"text": "Wiggle", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wiggle", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fa2529c4-598d-479d-aa3b-54cf2177a8cd", "name": "Wiggle", "icons": [{"id": "0561251f-966a-456f-9a8b-cb37d64515dd", "name": "Wiggle", "type": "light"}]}]}, {"id": "5014e45a-94c4-4de7-8fa2-32d8b159a5c3", "name": "Clover", "tags": [], "issuers": [], "match_rules": [{"text": "Clover", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Clover", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1fcc8cb6-813d-4e91-a65f-fb15f4fc7c0d", "name": "Clover", "icons": [{"id": "4bd00dcd-0d0e-417a-81a2-b55589a27f26", "name": "Clover", "type": "light"}]}]}, {"id": "501ba935-3f40-48b0-b512-8e6333e0f753", "name": "VirusTotal", "tags": [], "issuers": [], "match_rules": [{"text": "VirusTotal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VirusTotal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ba03cb07-c2e8-4a8e-a7f6-039444870b70", "name": "VirusTotal", "icons": [{"id": "23bdd534-52be-4d82-b846-708892422d6e", "name": "VirusTotal", "type": "light"}]}]}, {"id": "50547632-724e-4ed9-a552-e5c3bc9bac8d", "name": "Doppler", "tags": [], "issuers": [], "match_rules": [{"text": "Doppler", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Doppler", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0c28c47d-6bc2-4534-a99b-3d6fdc1ed88a", "name": "Doppler", "icons": [{"id": "659f2ad5-8a53-4a6d-9dcf-23f5e12896a9", "name": "Doppler", "type": "light"}]}]}, {"id": "50a5330a-e640-4969-819a-e16486a2b009", "name": "BeMovil", "tags": [], "issuers": [], "match_rules": [{"text": "BeMovil", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BeMovil", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "bcc809b3-41d2-4c7d-bf2f-9509260d194a", "name": "BeMovil", "icons": [{"id": "0d31a9e4-0973-4d56-9db7-4b1a0ea2c004", "name": "BeMovil", "type": "light"}]}]}, {"id": "50e27adc-00fe-4d9d-a8b5-323eae43e8f8", "name": "San Francisco Fire Credit Union", "tags": [], "issuers": [], "match_rules": [{"text": "San Francisco Fire Credit Union", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "San Francisco Fire Credit Union", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7e4420d5-62de-45d2-a86d-ce14b017064f", "name": "San Francisco Fire Credit Union", "icons": [{"id": "20efa83d-d631-4ab3-805f-640a9c147bc1", "name": "San Francisco Fire Credit Union", "type": "light"}]}]}, {"id": "510e06de-8861-44a0-a4b4-831f8392b097", "name": "Hostpoint", "tags": [], "issuers": [], "match_rules": [{"text": "Hostpoint", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "f70ff97e-e4b1-46ae-b8de-69795cd9ef04", "name": "Hostpoint", "icons": [{"id": "2420ac51-9eed-4153-9aa0-695f03078989", "name": "Hostpoint", "type": "light"}]}]}, {"id": "51251986-e6c3-438b-9c05-2362cc53ba2b", "name": "WoltLab", "tags": [], "issuers": [], "match_rules": [{"text": "WoltLab", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "WoltLab", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85bdf4f1-abbb-4fca-9209-e182d43e489a", "name": "WoltLab", "icons": [{"id": "51aa09da-f264-4043-992a-44876f452a19", "name": "WoltLab", "type": "light"}]}]}, {"id": "513a463d-0a51-4cbc-b531-6e2c69aa7a76", "name": "AscendEX", "tags": [], "issuers": [], "match_rules": [{"text": "AscendEX", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "540fbcef-8030-4bc0-aea9-5b8d9dd6c3d1", "name": "AscendEX", "icons": [{"id": "b7ba6c17-1165-4ec8-8ac7-2c3429275b88", "name": "AscendEX", "type": "light"}]}]}, {"id": "51b20977-db46-4bd4-94ef-efb76a0a4e7c", "name": "Fidelity Investments ", "tags": [], "issuers": [], "match_rules": [{"text": "Fidelity Investments ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fidelity Investments ", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Fidelity(\\+|\\s|-|_)Investments(\\+|\\s|-|_)", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Fidelity(\\+|\\s|-|_)Investments(\\+|\\s|-|_)", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "d260ea43-ef50-4387-8745-0244df86b816", "name": "Fidelity Investments ", "icons": [{"id": "5c9ae4ae-1030-4d53-81f8-a09728c170bd", "name": "Fidelity Investments ", "type": "light"}]}]}, {"id": "51ced224-0dc2-4a46-be4f-3f6fefc7c48f", "name": "Bitfinex", "tags": [], "issuers": [], "match_rules": [{"text": "Bitfinex", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "24d139a7-9783-4668-bb22-59696c118069", "name": "Bitfinex", "icons": [{"id": "3efcdbb3-aa42-4692-82eb-633c8a4db9ff", "name": "Bitfinex", "type": "light"}]}]}, {"id": "51f58dab-5f75-4199-8ed7-09d75be1d30d", "name": "SoulSoftware", "tags": [], "issuers": ["SoulSoftware"], "match_rules": null, "icons_collections": [{"id": "c8f30ed4-4ab0-4607-9b0c-b7f3178af38e", "name": "SoulSoftware", "icons": [{"id": "689f41c9-e2b1-4358-9782-706dd4586eeb", "name": "SoulSoftware", "type": "light"}]}]}, {"id": "51f6194c-93d1-41f4-b65f-f80136ce2fb7", "name": "Nuki", "tags": [], "issuers": ["Nuki"], "match_rules": null, "icons_collections": [{"id": "824651bb-1696-4a86-9c8a-a0ad50d15ba2", "name": "Nuki", "icons": [{"id": "4225959b-f7ca-43ee-b3e8-ae4641fe1005", "name": "Nuki", "type": "dark"}, {"id": "ee553e5a-27f2-4f4e-8716-80fc71626009", "name": "Nuki", "type": "light"}]}]}, {"id": "51fb583d-61d0-4bfe-8f6e-5e44adc233bf", "name": "Healthchecks", "tags": [], "issuers": ["Healthchecks.io"], "match_rules": null, "icons_collections": [{"id": "28703409-a58e-473d-9690-ba490c139f34", "name": "Healthchecks", "icons": [{"id": "30a94917-8b0a-4c87-9c58-e756e8e781c7", "name": "Healthchecks", "type": "light"}]}]}, {"id": "520878df-f9c0-45c2-813b-8918c4c5f94b", "name": "NinjaRMM", "tags": [], "issuers": ["NinjaRMM"], "match_rules": null, "icons_collections": [{"id": "46dfc67b-6fa3-45f0-a1e9-58982eb56031", "name": "NinjaRMM", "icons": [{"id": "21b40e43-5bbb-4c76-a0ea-6e09104ee09d", "name": "NinjaRMM", "type": "dark"}, {"id": "85207e62-35ef-4ccb-896c-07d15ff14417", "name": "NinjaRMM", "type": "light"}]}]}, {"id": "524512bc-9262-41cd-babb-1193dcd07066", "name": "Telzio", "tags": [], "issuers": [], "match_rules": [{"text": "Telzio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Telzio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "01d0de55-64f4-477f-8ea4-a28a81a1666c", "name": "Telzio", "icons": [{"id": "023cd58c-270f-40e1-8fe5-1b0056ba729d", "name": "telzio", "type": "dark"}, {"id": "103324dc-bd79-4b6a-8942-5c1894235bf1", "name": "telzio", "type": "light"}]}]}, {"id": "5309d9da-1916-40a9-8d91-18fcca147bd4", "name": "Open Science Framework (OSF)", "tags": [], "issuers": [], "match_rules": [{"text": "Open Science Framework (OSF)", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Open Science Framework (OSF)", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e922d67d-12b5-492d-adec-bc7474bf37af", "name": "Open Science Framework (OSF)", "icons": [{"id": "9be7280d-885b-4e3a-947e-9526fb40c0e4", "name": "Open Science Framework (OSF)", "type": "light"}]}]}, {"id": "5318083f-0330-4384-869f-8c76ad862337", "name": "Chargebee", "tags": [], "issuers": ["Chargebee"], "match_rules": [], "icons_collections": [{"id": "400fced8-6fac-488a-8154-85be47d84abe", "name": "Chargebee", "icons": [{"id": "6368a547-20cc-4674-bdff-dd3e0fb39e24", "name": "Chargebee", "type": "light"}]}]}, {"id": "532c2415-76db-4372-967b-52cc45925219", "name": "LATOKEN", "tags": [], "issuers": [], "match_rules": [{"text": "LATOKEN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LATOKEN", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d4bfd844-4a05-4fec-982a-befe2b1c6924", "name": "LATOKEN", "icons": [{"id": "1ad9b76e-ef5b-4927-9e56-d732a7a0e02d", "name": "LATOKEN", "type": "light"}]}]}, {"id": "533125d2-0aaa-428d-970c-2556cf8714e6", "name": "Bugzilla@Mozilla", "tags": [], "issuers": [], "match_rules": [{"text": "Bugzilla@Mozilla", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bugzilla@Mozilla", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "185d6e0e-12d5-4e2b-aa46-3c68b7feb4aa", "name": "Bugzilla@Mozilla", "icons": [{"id": "6c51aa1c-6cf5-4bf7-85fe-67e06ffcbb27", "name": "Bugzilla@Mozilla", "type": "light"}]}]}, {"id": "5335e427-584e-4f93-962c-a7a50011fe69", "name": "Remote Desktop Manager", "tags": [], "issuers": [], "match_rules": [{"text": "Remote Desktop Manager", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Remote Desktop Manager", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "42bf1357-f9a4-468a-8516-6de803af8e03", "name": "Remote Desktop Manager", "icons": [{"id": "9a804124-7888-409a-b903-55621e76401a", "name": "Remote Desktop Manager", "type": "light"}]}]}, {"id": "537300d9-2587-4a58-8788-cd1369d150a1", "name": "Pennsylvania Dept of Revenue myPATH", "tags": [], "issuers": [], "match_rules": [{"text": "Pennsylvania Dept of Revenue myPATH", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pennsylvania Dept of Revenue myPATH", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b361765f-a29c-44e1-9a72-eaff6f8826ac", "name": "Pennsylvania Dept of Revenue myPATH", "icons": [{"id": "ea5f6ba5-f28f-458e-9e13-f87385b770c5", "name": "Pennsylvania Dept of Revenue myPATH", "type": "light"}]}]}, {"id": "53f88a7f-547d-437e-b702-bab47f68d069", "name": "DNSimple", "tags": [], "issuers": [], "match_rules": [{"text": "DNSimple", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DNSimple", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "169f08a5-6be2-4230-932a-5c2701e3e74d", "name": "DNSimple", "icons": [{"id": "e35e8020-24fe-47a9-b4be-a17a29bb2170", "name": "DNSimple", "type": "light"}]}]}, {"id": "53fba8f1-df0b-4efc-82b0-68b60a5be8af", "name": "fortrabbit", "tags": [], "issuers": [], "match_rules": [{"text": "fortrabbit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "fortrabbit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "efe89b5d-cf7d-4620-a7ec-3d6d775b4d8f", "name": "fortrabbit", "icons": [{"id": "38d76216-bfa4-401e-b036-d6b56fedd8e9", "name": "fortrabbit", "type": "light"}]}]}, {"id": "53fc964a-17d5-40b6-a274-19578701609d", "name": "ESET", "tags": ["homr"], "issuers": [], "match_rules": [{"text": "ESET", "field": "issuer", "matcher": "starts_with", "ignore_case": true}, {"text": "ESET", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "0c8f14a4-d69d-4021-bdaa-5a7821e3f0b4", "name": "ESET HOME", "icons": [{"id": "abb0bfc3-b044-4026-af55-b41f00c05eba", "name": "ESET HOME", "type": "light"}, {"id": "afe063ee-1314-4c88-bd54-0466fba8f163", "name": "eset", "type": "dark"}]}]}, {"id": "54145e0d-6005-4961-b61b-9d39bb21abef", "name": "Scalr", "tags": [], "issuers": [], "match_rules": [{"text": "Scalr", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Scalr", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "95433532-c1b3-45cd-8a78-24e0297eaf7b", "name": "Scalr", "icons": [{"id": "0705c85e-5587-4639-8d10-88abd458efe5", "name": "Scalr", "type": "light"}]}]}, {"id": "54202edd-b74c-42a8-992c-6f6ccadb6a63", "name": "Shareworks", "tags": ["Solium"], "issuers": [], "match_rules": [{"text": "Shareworks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Shareworks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "59bcbc4d-3727-4430-ab39-885b0677d1c1", "name": "Shareworks", "icons": [{"id": "e0614ecd-8fdc-43c6-868d-2fb4fd26c81a", "name": "Shareworks", "type": "light"}]}]}, {"id": "548f3406-8633-48ab-a1c7-9f755c8dd428", "name": "Trellix", "tags": [], "issuers": [], "match_rules": [{"text": "Trellix", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Trellix", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2e13be43-bad8-4e37-bc19-1c95d90c986a", "name": "Trellix", "icons": [{"id": "dee2e54f-2331-45d7-91eb-ec11af966170", "name": "Trellix", "type": "light"}, {"id": "eec3a7b7-35e5-4a88-8412-4c43fca135a3", "name": "Trellix", "type": "dark"}]}]}, {"id": "549a306a-f8ca-444c-96e6-1b832491b443", "name": "NDAX", "tags": [], "issuers": ["NDAX"], "match_rules": null, "icons_collections": [{"id": "2fb7a45b-7e61-40a8-a258-3c7e5172f355", "name": "NDAX", "icons": [{"id": "497bcb39-bfb8-4a6f-b95f-edbad88f931c", "name": "NDAX", "type": "light"}]}]}, {"id": "54e07a74-ba7b-43aa-bc8d-aab70be10469", "name": "State Employees Federal Credit Union", "tags": ["sefcu"], "issuers": [], "match_rules": [{"text": "State Employees Federal Credit Union", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "State Employees Federal Credit Union", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "56d5c3f4-bc20-4960-8d60-f38cec78b1f8", "name": "State Employees Federal Credit Union", "icons": [{"id": "61cb2805-dec2-49f9-85bd-5d07d9067f62", "name": "State Employees Federal Credit Union", "type": "dark"}, {"id": "c0d06ddc-3296-430f-88ed-129c6d0dae29", "name": "State Employees Federal Credit Union", "type": "light"}]}]}, {"id": "54e271f4-9539-43a7-947b-728b388aa936", "name": "Gemini", "tags": [], "issuers": [], "match_rules": [{"text": "Gemini", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Gemini", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "941df017-44a1-45b4-be41-e10d0fde2a5e", "name": "Gemini", "icons": [{"id": "57ac2ed8-7948-4837-ae51-3ba38b056c29", "name": "Gemini", "type": "light"}]}]}, {"id": "54f6272f-e6c1-4a88-8e2c-a1b0a490c55d", "name": "BackBlaze", "tags": [], "issuers": ["Backblaze"], "match_rules": [], "icons_collections": [{"id": "d92bde37-a6d6-475e-b71e-adb362efa18a", "name": "BackBlaze", "icons": [{"id": "2ca75226-1f6b-4acf-91d4-f590ee0bab32", "name": "BackBlaze", "type": "light"}]}]}, {"id": "556058b7-348b-405a-9739-0a3992e2a073", "name": "Affinity", "tags": [], "issuers": ["Affinity"], "match_rules": null, "icons_collections": [{"id": "bd76cb19-7313-44fb-919f-8f3635d045fc", "name": "Affinity", "icons": [{"id": "5f313a47-1484-439f-81b1-a196b66b6e7f", "name": "Affinity", "type": "dark"}, {"id": "7180aa0a-ec10-4cfa-959f-04af4163d5e3", "name": "Affinity", "type": "light"}]}]}, {"id": "55a63bba-71bd-4064-a7d4-ec1122e27b81", "name": "World4You", "tags": [], "issuers": [], "match_rules": [{"text": "World4You", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "World4You", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b2b1aed3-c166-44a7-826c-f15c20642cb7", "name": "World4You", "icons": [{"id": "5b82abb4-5ce0-4542-8974-9aa91248010b", "name": "World4You", "type": "light"}]}]}, {"id": "55af098d-a923-4719-b24f-894aaff45e58", "name": "Otter AI", "tags": [], "issuers": [], "match_rules": [{"text": "Otter AI", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Otter AI", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Otter(\\+|\\s|-|_)AI", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Otter(\\+|\\s|-|_)AI", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "ce04e4ee-bce0-4913-ad2b-f20936cb8ae5", "name": "Otter AI", "icons": [{"id": "95853196-53df-47b8-8e8c-bedcf0fbd833", "name": "Otter AI", "type": "light"}]}]}, {"id": "55b8e8b9-3367-4365-a341-f2e9064eee91", "name": "Logitech G", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "a8a6625d-121c-4762-8199-03525dc511c7", "name": "Logitech G", "icons": [{"id": "9074b95e-3fab-4560-92d6-71d81e11d9ef", "name": "Logitech G", "type": "dark"}, {"id": "c32a18bd-76f5-4381-a1a4-4ca7fe8d2fc7", "name": "Logitech G", "type": "light"}]}]}, {"id": "55d34acd-3022-4ad9-bc87-06c075d5dd15", "name": "Dashlane", "tags": [], "issuers": ["Dashlane"], "match_rules": null, "icons_collections": [{"id": "fed7d171-3d84-430c-91d5-4378eb83dedc", "name": "Dashlane", "icons": [{"id": "06a08005-3061-4dde-b7a9-4d86f630104a", "name": "Dashlane", "type": "dark"}, {"id": "214a97bf-c4e7-48e3-a3ce-6a38f863d9f8", "name": "Dashlane", "type": "light"}]}]}, {"id": "564e69cd-b099-46e0-b4c2-bdc102ba99c2", "name": "KeyCDN", "tags": [], "issuers": [], "match_rules": [{"text": "KeyCDN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "KeyCDN", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b8a56771-28dd-40f9-8e84-dab5d2039b97", "name": "KeyCDN", "icons": [{"id": "0210d142-11ae-4041-b308-417ab948359f", "name": "KeyCDN", "type": "light"}]}]}, {"id": "565551d7-cd9b-4800-bc14-279129fac83c", "name": "CMG", "tags": [], "issuers": [], "match_rules": [{"text": "CMG", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CMG", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6810950a-eb0c-46fd-9a02-273a81952689", "name": "CMG", "icons": [{"id": "370b60dc-5605-48d1-8b1c-97139dfbd9f2", "name": "CMG", "type": "dark"}, {"id": "c23893e6-d98f-4b1b-b7a1-a281cf0df1f3", "name": "CMG", "type": "light"}]}]}, {"id": "56cc9fc0-0f57-4777-a3e0-ccaad03234a8", "name": "Mercado Libre", "tags": [], "issuers": ["Mercado Libre"], "match_rules": [], "icons_collections": [{"id": "5cb7030d-45e2-45a4-b8c6-2b5d61a3783e", "name": "Mercado Libre", "icons": [{"id": "0b7a88a1-4c27-41b7-b0a9-242b5bf36589", "name": "Mercado Libre", "type": "light"}]}]}, {"id": "56f87638-e0b8-4059-b82c-0ca3a840d927", "name": "Huobi", "tags": [], "issuers": [], "match_rules": [{"text": "Huobi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Huobi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6b94dc16-5d8a-499c-8f7f-3c0c34e443a8", "name": "Huobi", "icons": [{"id": "19ecdf80-d5f9-4233-968f-3c452afead30", "name": "Huobi", "type": "light"}, {"id": "dd66ac06-1a7f-4f3a-aeda-a214b2bf6527", "name": "Huobi", "type": "dark"}]}]}, {"id": "5702306f-f354-4325-a35e-287079c31607", "name": "POST Luxembourg", "tags": [], "issuers": [], "match_rules": [{"text": "POST Luxembourg", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "POST Luxembourg", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d16c75c4-6e08-4cc7-8d1d-ff58309d44e4", "name": "POST Luxembourg", "icons": [{"id": "c104276e-74fe-4532-a0b5-e87600d09bdd", "name": "POST Luxembourg", "type": "light"}]}]}, {"id": "571bd879-7e0a-49b8-9b24-929bcfaff519", "name": "Buildkite", "tags": [], "issuers": [], "match_rules": [{"text": "Buildkite", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Buildkite", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47701d40-8581-4789-8cd1-b1cf9b191ff3", "name": "Buildkite", "icons": [{"id": "1283fbc4-e230-4f1a-9718-fa748ca9cc44", "name": "Buildkite", "type": "light"}]}]}, {"id": "573b2787-4aaf-4eaa-a065-a1f8d2672b30", "name": "CEX.IO", "tags": [], "issuers": [], "match_rules": [{"text": "CEX.IO", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CEX.IO", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4ea5519a-aa34-45d3-9878-f357e5e23154", "name": "CEX.IO", "icons": [{"id": "7bdaec54-d94a-48d9-a8fe-34c67e7540d3", "name": "CEX.IO", "type": "light"}]}]}, {"id": "57d20be7-1935-45c1-a19a-790c23ddb220", "name": "Republic Wireless", "tags": [], "issuers": [], "match_rules": [{"text": "Republic Wireless", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Republic Wireless", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "74c21844-bcc2-4725-8838-1bc865eaecb3", "name": "Republic Wireless", "icons": [{"id": "32719135-2e18-4f7d-8631-8846a699be40", "name": "Republic Wireless", "type": "light"}]}]}, {"id": "58041c53-2ca3-47da-ab53-f17fbe7f954e", "name": "Nexus Mods", "tags": [], "issuers": ["Nexus Mods"], "match_rules": null, "icons_collections": [{"id": "6ec7d249-30aa-4164-9ba6-87aad37692d8", "name": "Nexus Mods", "icons": [{"id": "2516f13e-6072-496a-a8ce-e71e425e6234", "name": "Nexus Mods", "type": "light"}]}]}, {"id": "58799998-a711-4eb6-8755-838cfac65c5f", "name": "OpenAI", "tags": [], "issuers": ["OpenAI"], "match_rules": null, "icons_collections": [{"id": "0775db30-2bdc-42b6-aaf8-439aaf276c49", "name": "OpenAI", "icons": [{"id": "6dd1bc4a-2a56-4bc5-b3e4-887c2b6851d8", "name": "OpenAI", "type": "light"}, {"id": "bfeb1390-ff0c-4e45-ab0e-96924cfee134", "name": "OpenAI", "type": "dark"}]}]}, {"id": "588921bf-6df7-4d92-a881-9af92e15642b", "name": "Instagram", "tags": [], "issuers": ["Instagram"], "match_rules": [], "icons_collections": [{"id": "f4cad0b9-00d5-420c-804c-d41ce8825eed", "name": "Instagram", "icons": [{"id": "4d9a7691-7e58-4eb2-bbd5-c11a1b9d3390", "name": "Instagram", "type": "light"}]}]}, {"id": "58db05de-2ceb-42da-97b5-00c9ef845c8f", "name": "StatusCake", "tags": [], "issuers": [], "match_rules": [{"text": "StatusCake", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StatusCake", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c5975680-e3af-4e36-a108-717908865909", "name": "StatusCake", "icons": [{"id": "64457582-48c0-49e1-9c86-9bec4db4bda6", "name": "StatusCake", "type": "light"}]}]}, {"id": "58e275d6-8398-4956-b703-64cf9f408ca1", "name": "Adafruit", "tags": [], "issuers": [], "match_rules": [{"text": "Adafruit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Adafruit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a47db328-5e4c-4f98-a37c-742990fe8b60", "name": "Adafruit", "icons": [{"id": "a3ae44b4-590a-4ca0-b0c6-68d78a886c2c", "name": "Adafruit", "type": "light"}, {"id": "d91d63fa-f229-461a-840c-e91245f87d06", "name": "Adafruit", "type": "dark"}]}]}, {"id": "58f88dd4-b0b3-432e-b75b-ca4d030f8a5a", "name": "Freehostia", "tags": [], "issuers": [], "match_rules": [{"text": "Freehostia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Freehostia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77846b2d-bff4-496e-a5e5-2c73eeb383ee", "name": "Freehostia", "icons": [{"id": "890de4e9-1789-46d2-af81-3fae15b55aee", "name": "Freehostia", "type": "light"}, {"id": "99d318fa-8494-4670-9d81-45537de912fb", "name": "Freehostia", "type": "dark"}]}]}, {"id": "5918befe-69a1-4cbf-8291-d616f39d392d", "name": "Textlocal", "tags": [], "issuers": [], "match_rules": [{"text": "Textlocal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Textlocal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aa53fffb-8aed-4b63-b904-be3a72f93c25", "name": "Textlocal", "icons": [{"id": "a64f4d6f-6670-481b-a075-a37d89dc08ca", "name": "Textlocal", "type": "light"}]}]}, {"id": "5929e53b-95f3-426b-a380-8220d1e37e9e", "name": "G2A", "tags": [], "issuers": [], "match_rules": [{"text": "g2a", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b20ef2ce-2235-4309-a02e-dca07e946505", "name": "G2A", "icons": [{"id": "0208f477-7585-47d3-beb0-faf33e1d82a9", "name": "G2A", "type": "light"}, {"id": "2c9c1e57-185c-48ef-86c9-92ca6a487ad9", "name": "G2A", "type": "dark"}]}]}, {"id": "59337f47-8ed5-455b-bc06-81ec692efc24", "name": "INWX", "tags": [], "issuers": [], "match_rules": [{"text": "INWX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "INWX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1311ce99-ef79-4606-8e6e-abc93d54cbe5", "name": "INWX", "icons": [{"id": "378a4fc8-8523-4011-afe8-95e2a5a97612", "name": "INWX", "type": "light"}]}]}, {"id": "593dd333-b586-4ff7-b573-d30277d82789", "name": "Chevrolet", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "a1043452-67bf-4efc-a160-aca21a92b1c9", "name": "Chevrolet", "icons": [{"id": "793776a5-355f-4656-b192-5ac60d9367d6", "name": "Chevrolet", "type": "light"}]}]}, {"id": "5a4eb6e0-0ea7-4b20-8d3e-a480bdd9cb02", "name": "Best Buy", "tags": ["buy"], "issuers": ["Best Buy"], "match_rules": null, "icons_collections": [{"id": "fccbeda3-f69f-4a45-9f83-66bf887d3002", "name": "Best Buy", "icons": [{"id": "686f7e5b-2eb1-457b-9caf-9e7ea3c5d400", "name": "Best Buy", "type": "light"}]}]}, {"id": "5a775bbc-b371-4232-8a8e-b38fd6a36b15", "name": "AOL", "tags": [], "issuers": ["AOL"], "match_rules": null, "icons_collections": [{"id": "ab1de355-e0f4-464a-9913-9357401d5e57", "name": "AOL", "icons": [{"id": "554889e1-893b-45e4-9d6f-640863c2d448", "name": "AOL", "type": "light"}, {"id": "61853fb1-8e02-4ea5-9e28-098d82a9aa29", "name": "AOL", "type": "dark"}]}]}, {"id": "5abb0aad-8f88-4051-a363-2d25219832f9", "name": "DigiCert", "tags": [], "issuers": [], "match_rules": [{"text": "DigiCert", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DigiCert", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c80c921a-bdcf-408b-983c-18e5c236b071", "name": "DigiCert", "icons": [{"id": "00bf40df-f8e0-41a1-b0a1-bfcec09351f9", "name": "DigiCert", "type": "light"}]}]}, {"id": "5b290d3a-dadf-411b-a183-761e68c53520", "name": "ReadMe", "tags": [], "issuers": [], "match_rules": [{"text": "ReadMe", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ReadMe", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9e5ef08d-c36c-4b7a-82c4-cf00a3ebfd95", "name": "ReadMe", "icons": [{"id": "032d2399-07fd-4564-8be9-4ee56c51a91a", "name": "ReadMe", "type": "light"}]}]}, {"id": "5b52736c-5d52-4195-873d-a8ec606dade9", "name": "StackPath", "tags": [], "issuers": [], "match_rules": [{"text": "StackPath", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StackPath", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7db726c4-4803-4e71-98df-8a0d2c0be989", "name": "StackPath", "icons": [{"id": "54562f68-bc2f-4692-baa4-5f06ea0c0319", "name": "StackPath", "type": "light"}]}]}, {"id": "5b52f3e4-4cc6-49a1-9639-ec676dc78e00", "name": "Protolabs", "tags": [], "issuers": [], "match_rules": [{"text": "Protolabs", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Protolabs", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d05f53f7-bbd7-4b9c-bf8a-ea008c9d40a8", "name": "Protolabs", "icons": [{"id": "88703123-297e-4a20-8077-39646c2b0a84", "name": "Protolabs", "type": "light"}]}]}, {"id": "5b545e9a-9f41-4296-93a7-10b5336b8845", "name": "Call of Duty", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "3a70fcc1-a406-4212-bd0c-440dbe6ae824", "name": "Call of Duty", "icons": [{"id": "80f3272d-c493-40ca-babf-b638444ab014", "name": "Call of Duty", "type": "light"}, {"id": "a67013ff-ba14-4a35-8de5-80877c747dd3", "name": "Call of Duty", "type": "dark"}]}]}, {"id": "5b986ca0-c5ca-4f7e-9a97-424b9b2e6655", "name": "Moneybird", "tags": [], "issuers": [], "match_rules": [{"text": "Moneybird", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Moneybird", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "14e21fbc-61ad-4bb7-af20-341714caa161", "name": "Moneybird", "icons": [{"id": "8156525e-1239-411f-8997-6a61edae5311", "name": "Moneybird", "type": "light"}]}]}, {"id": "5ba2c9cd-cca9-4330-a09d-7adf5afd0184", "name": "Atlassian", "tags": [], "issuers": ["Atlassian", "Confluence"], "match_rules": [], "icons_collections": [{"id": "cd70f801-5ee2-41ff-8ad5-40c9c1e9cacb", "name": "Atlassian", "icons": [{"id": "8c1309ca-ad86-4b0a-8138-282b23a4db36", "name": "Atlassian", "type": "light"}]}]}, {"id": "5bc5b82c-47e2-411a-9911-d25fbe464324", "name": "Vultr", "tags": [], "issuers": ["Vultr"], "match_rules": null, "icons_collections": [{"id": "f733981b-6d51-4b1f-ab45-d52624e0362b", "name": "Vultr", "icons": [{"id": "11828364-f049-4e39-9dba-37f395d32678", "name": "Vultr", "type": "dark"}, {"id": "b119e758-3ddd-471a-b60c-4d08b4d18f81", "name": "Vultr", "type": "light"}]}]}, {"id": "5c9efdde-cb62-4304-9f04-d120084a53dd", "name": "Discord", "tags": [], "issuers": ["Discord"], "match_rules": [], "icons_collections": [{"id": "f260ffa4-f41f-408a-aa2a-03d943efe371", "name": "Discord", "icons": [{"id": "df6e1b0c-1a81-4a7f-863e-654b22f6d9b2", "name": "Discord", "type": "light"}]}]}, {"id": "5cc08262-6e24-4eb7-88d4-3511276ab5f9", "name": "Alibaba Cloud", "tags": [], "issuers": ["Aliyun"], "match_rules": null, "icons_collections": [{"id": "67aee011-7509-41b7-8abb-584f529b9e70", "name": "Alibaba Cloud", "icons": [{"id": "715d784f-53a6-4b14-9f0a-0dfa763f1475", "name": "Alibaba Cloud", "type": "light"}]}]}, {"id": "5cc7a323-72c3-4e18-ac71-6e99a3f1ab21", "name": "ORCID", "tags": [], "issuers": [], "match_rules": [{"text": "ORCID", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ORCID", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "529ac5a2-27de-4c74-9673-5e6cbb382ac7", "name": "ORCID", "icons": [{"id": "999a522a-3a1b-4816-a08f-d7fd14ca8a77", "name": "ORCID", "type": "light"}]}]}, {"id": "5cce9662-946c-4e04-8cb4-f4276da76875", "name": "TinyURL", "tags": [], "issuers": [], "match_rules": [{"text": "TinyURL", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TinyURL", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dc9f7d29-a661-4dbf-8de2-1edb853cac21", "name": "TinyURL", "icons": [{"id": "08bec297-7773-4012-a475-d18f39aa53e1", "name": "TinyURL", "type": "light"}]}]}, {"id": "5cece28e-0c32-4242-ad2c-ff0864a6c6f7", "name": "ImprovMX", "tags": [], "issuers": [], "match_rules": [{"text": "ImprovMX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ImprovMX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dc3b4243-717b-477d-b5e9-042572cd9f8d", "name": "ImprovMX", "icons": [{"id": "3c227b73-84be-44fd-833b-2fe8ee1faf70", "name": "ImprovMX", "type": "light"}]}]}, {"id": "5cf8be69-25f5-4d43-aa51-2d54930d247a", "name": "PayPal", "tags": [], "issuers": ["PayPal"], "match_rules": [], "icons_collections": [{"id": "ff415e4a-32f1-47be-9274-44ab42f79720", "name": "PayPal", "icons": [{"id": "80c23015-bb4f-4637-85fb-94b09a06e1a2", "name": "PayPal", "type": "light"}, {"id": "817cb56f-54d2-4fb4-976c-0a0f60220215", "name": "PayPal", "type": "dark"}]}]}, {"id": "5d2778b3-e293-49e7-a39e-66d86c21dd96", "name": "Dropbox", "tags": [], "issuers": ["Dropbox"], "match_rules": [], "icons_collections": [{"id": "3c82e6ee-906c-4d6a-9992-01ab376614db", "name": "Dropbox", "icons": [{"id": "9f71451b-676a-4226-962b-9f1040986ebc", "name": "Dropbox", "type": "dark"}, {"id": "b44f8e4c-d17a-447d-956b-ada61c5823ef", "name": "Dropbox", "type": "light"}]}]}, {"id": "5d3857d5-c819-4fc2-9cbb-14572bbe0bd3", "name": "BeyondTrust", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "5d8c1875-0d39-4178-94db-1f3ba3bbaca1", "name": "BeyondTrust", "icons": [{"id": "835f2f2b-a196-4cd7-8d33-969c7c9ac48f", "name": "BeyondTrust", "type": "light"}]}]}, {"id": "5d4710e6-1eb7-4d29-b1aa-1c416a20773d", "name": "ClouDNS", "tags": [], "issuers": [], "match_rules": [{"text": "ClouDNS", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "e4ca9fb2-281d-4146-9dd3-083899d1515d", "name": "ClouDNS", "icons": [{"id": "bc74d43b-713a-470f-a0b6-9bc4fdc57be5", "name": "ClouDNS", "type": "light"}]}]}, {"id": "5d4a5efd-f4c8-4b0b-845e-b502df23c341", "name": "NetEase Mail", "tags": [], "issuers": [], "match_rules": [{"text": "NetEase Mail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NetEase Mail", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0ab0d45e-340f-433a-b205-2d1a2de951ad", "name": "NetEase Mail", "icons": [{"id": "aee3aec4-a68b-4b7b-b0ae-1ec1a30c8707", "name": "NetEase Mail", "type": "light"}]}]}, {"id": "5d4c1ad0-35e7-4205-811b-52d596651ca2", "name": "AngelList", "tags": [], "issuers": ["AngelList"], "match_rules": [], "icons_collections": [{"id": "6900249f-744b-43df-86bd-8ad8fb51965a", "name": "AngelList", "icons": [{"id": "297942dd-8733-4200-8044-1cbfac87651a", "name": "AngelList", "type": "dark"}, {"id": "59ef6432-8054-4db9-8968-0d176c01467c", "name": "AngelList", "type": "light"}]}]}, {"id": "5d95f8ed-e678-4cea-a700-bca526ee0891", "name": "BitMEX", "tags": [], "issuers": [], "match_rules": [{"text": "BitMEX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitMEX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "54cbbf87-362a-4cce-a614-c11844631e51", "name": "BitMEX", "icons": [{"id": "7060ebc0-6f09-426f-b7bd-963432e849cf", "name": "BitMEX", "type": "light"}]}]}, {"id": "5da3a886-876e-485e-9a37-5c5d1c258ecd", "name": "ENEBA", "tags": [], "issuers": ["ENEBA"], "match_rules": null, "icons_collections": [{"id": "d0239931-f1fb-4d08-ad44-06104a85c83c", "name": "ENEBA", "icons": [{"id": "b655c71a-6b40-464d-8f58-43705c6c071d", "name": "ENEBA", "type": "light"}]}]}, {"id": "5dfa53b5-48c3-48eb-a134-db9ac58e8d34", "name": "Privacy", "tags": [], "issuers": ["Privacy.com"], "match_rules": null, "icons_collections": [{"id": "4fe59ffa-9851-47df-88a2-15104ea2985a", "name": "Privacy", "icons": [{"id": "90110b41-3105-4ec3-956d-bbe84c05c948", "name": "Privacy", "type": "light"}]}]}, {"id": "5e2748d9-64aa-45c0-a9b3-d2df77d462d7", "name": "CodeTasty", "tags": [], "issuers": [], "match_rules": [{"text": "CodeTasty", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CodeTasty", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2f1fa6fd-5b0c-4d1d-b05a-46690179fea6", "name": "CodeTasty", "icons": [{"id": "a956fa61-42cf-4cea-a64b-496e06f440e1", "name": "CodeTasty", "type": "light"}]}]}, {"id": "5e62a68a-88f4-4f3f-ad60-df8ea34bdc57", "name": "MongoDB", "tags": [], "issuers": ["auth.mongodb.com"], "match_rules": [], "icons_collections": [{"id": "e082188e-0759-4827-96ff-acfb35702a52", "name": "MongoDB", "icons": [{"id": "44799abb-abd0-4984-a008-e88ab9070367", "name": "MongoDB", "type": "light"}]}]}, {"id": "5f6cf4bf-e408-41bb-a520-4c27417ba474", "name": "Infomaniak", "tags": [], "issuers": ["Infomaniak"], "match_rules": null, "icons_collections": [{"id": "5faf5121-0161-4b23-a875-b347574b891b", "name": "Infomaniak", "icons": [{"id": "47d76376-6a44-41b3-a800-c69cdd8fe393", "name": "Infomaniak", "type": "light"}]}]}, {"id": "5fa52ba1-3b2a-4998-90be-b89dc850be9d", "name": "BTCPOP", "tags": [], "issuers": [], "match_rules": [{"text": "BTCPOP", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BTCPOP", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b58bfb1-12fb-4361-986b-a4a1b7777553", "name": "BTCPOP", "icons": [{"id": "a3f1babf-d5b4-40e7-941e-2e203106b57d", "name": "BTCPOP", "type": "light"}]}]}, {"id": "5fac27e0-e0e4-4e5c-ba7c-54ca0c5f1482", "name": "Coinbase", "tags": [], "issuers": ["Coinbase"], "match_rules": [], "icons_collections": [{"id": "5bd3cbd6-32b6-41f0-baa3-3fccaf624269", "name": "Coinbase", "icons": [{"id": "ea3196b2-7a7d-45ed-a4e8-144e837a013e", "name": "Coinbase", "type": "light"}]}]}, {"id": "5fcd18af-731d-402e-8da8-69beba902bb3", "name": "Aussie Broadband", "tags": [], "issuers": [], "match_rules": [{"text": "Aussie Broadband", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Aussie Broadband", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "63aabeae-81b0-4f97-a802-9ed78f96e288", "name": "Aussie Broadband", "icons": [{"id": "e37eaee1-f5c6-44ab-a9e5-7b61f2bdfe00", "name": "Aussie Broadband", "type": "dark"}, {"id": "ed998ce7-1689-468b-83a0-b8d58a91ec5a", "name": "Aussie Broadband", "type": "light"}]}]}, {"id": "6007631c-69f9-4613-b6b3-c90e2dd0ab44", "name": "Cloudways", "tags": [], "issuers": [], "match_rules": [{"text": "Cloudways", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cloudways", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f8e7eb20-5387-4efd-a903-585698e53cdb", "name": "Cloudways", "icons": [{"id": "ccdf7fa9-7c3a-4f06-bbb1-ec790886db90", "name": "Cloudways", "type": "light"}]}]}, {"id": "60453565-c595-450b-bd3d-62180f8044b2", "name": "Localize", "tags": [], "issuers": [], "match_rules": [{"text": "Localize", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Localize", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "34e67fb2-9608-4c3f-b357-7ef2c702cdfa", "name": "Localize", "icons": [{"id": "105c45f4-4602-4f2b-8070-b626db77d8be", "name": "Localize", "type": "light"}]}]}, {"id": "609517dd-c33f-4af9-8679-b8b9b2d96a98", "name": "Skype", "tags": [], "issuers": [], "match_rules": [{"text": "Skype", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Skype", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "39b080c5-0d73-4b8d-8a05-d258d3c69f0a", "name": "Skype", "icons": [{"id": "86953fcc-c53b-48dc-b7f3-a5742ded0904", "name": "Skype", "type": "light"}]}]}, {"id": "60975b64-7a9d-4226-ae20-9d6bc2762e47", "name": "Expensify", "tags": [], "issuers": [], "match_rules": [{"text": "Expensify", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Expensify", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "be6564d9-bfa8-498d-9020-0373c7317aa1", "name": "Expensify", "icons": [{"id": "a5e8be9a-1606-47bc-90ad-4d71f70b60f3", "name": "Expensify", "type": "dark"}, {"id": "da3267e3-a4cf-4efb-811e-ac0223448006", "name": "Expensify", "type": "light"}]}]}, {"id": "60c8159a-cf70-4375-9473-ec98a11c1c75", "name": "LocalMonero", "tags": [], "issuers": [], "match_rules": [{"text": "LocalMonero", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LocalMonero", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4be367e8-b77f-4bf3-b8a5-e93e5d451f9e", "name": "LocalMonero", "icons": [{"id": "5154a3e5-26ff-4750-9547-8a426cea96a1", "name": "LocalMonero", "type": "light"}]}]}, {"id": "60c8875d-2845-4c81-841f-918e5e1a7298", "name": "Shortcut", "tags": [], "issuers": [], "match_rules": [{"text": "Shortcut", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Shortcut", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4817e758-bcf3-404b-95f9-65292f4d3483", "name": "Shortcut", "icons": [{"id": "d67c412d-d0f0-4e5a-9da2-c186b319e450", "name": "Shortcut", "type": "light"}]}]}, {"id": "60cefb59-bc28-4490-b5f5-546641d3a561", "name": "Sailthru", "tags": [], "issuers": [], "match_rules": [{"text": "Sailthru", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sailthru", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85952097-0eaf-47ff-9744-8bddce53fc26", "name": "Sailthru", "icons": [{"id": "6ec6fd96-c11e-4c60-b662-daef72fdcc14", "name": "Sailthru", "type": "light"}]}]}, {"id": "60f81c6d-b3c1-4fbf-bf86-f28df7376815", "name": "CrashPlan", "tags": [], "issuers": [], "match_rules": [{"text": "CrashPlan", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CrashPlan", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "37b3876f-62f5-4dcf-a24e-13c18ab36111", "name": "CrashPlan", "icons": [{"id": "aaee140b-f555-4fbc-8a57-49cb6cd0807d", "name": "CrashPlan", "type": "light"}]}]}, {"id": "6157ef8e-ebda-443c-9602-02b7e1a531a6", "name": "Outbrain", "tags": [], "issuers": [], "match_rules": [{"text": "Outbrain", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Outbrain", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bad851a0-3907-4a7f-aa45-96f70a3f688b", "name": "Outbrain", "icons": [{"id": "69393d57-9431-4faa-a420-92b0d1577c3d", "name": "Outbrain", "type": "light"}]}]}, {"id": "61650469-dc5d-4fb7-85e3-b5d4f277377a", "name": "Restream", "tags": [], "issuers": [], "match_rules": [{"text": "Restream", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Restream", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "46879a21-13b9-4125-8530-35100a992ad8", "name": "Restream.io", "icons": [{"id": "668577d4-a416-4f37-add1-1ee2ef381f26", "name": "Restream", "type": "dark"}, {"id": "a2d743f6-981c-4bb6-888e-622a588c32f2", "name": "Restream.io", "type": "light"}]}]}, {"id": "61c0c1e1-b2b5-4dee-ab0c-735f1b70a5b5", "name": "Maropost Commerce Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "Maropost Commerce Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Maropost Commerce Cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fa5f4a79-9c2a-4060-bfcc-259778de34cf", "name": "Maropost Commerce Cloud", "icons": [{"id": "22a7d3df-3923-4973-a9ac-a87e664058b8", "name": "Maropost Commerce Cloud", "type": "light"}]}]}, {"id": "61f58f09-cad4-4ab3-8417-40c0e49ff717", "name": "VicRoads", "tags": [], "issuers": [], "match_rules": [{"text": "VicRoads", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VicRoads", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "888fddf1-10d6-41f1-b17a-1f49844ee543", "name": "VicRoads", "icons": [{"id": "797a9333-6542-4a08-a13c-1668cf4df2e6", "name": "VicRoads", "type": "light"}]}]}, {"id": "621298e1-9f5c-4ca8-87e2-632d8cb8397e", "name": "Tresorit", "tags": [], "issuers": ["Tresorit"], "match_rules": null, "icons_collections": [{"id": "ab897d14-54a5-4b0f-ad81-60f5f55a6841", "name": "Tresorit", "icons": [{"id": "70718233-36dc-494f-b53d-19763886a1bd", "name": "Tresorit", "type": "light"}]}]}, {"id": "62224345-10ea-4616-95eb-4dc3688cf7c0", "name": "Jitbit Helpdesk", "tags": [], "issuers": [], "match_rules": [{"text": "Jitbit Helpdesk", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Jitbit Helpdesk", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "972b593e-a13d-4c5c-8365-16069984e894", "name": "Jitbit Helpdesk", "icons": [{"id": "2d7c8b74-6cbd-4500-95ea-b7798d72a703", "name": "Jitbit Helpdesk", "type": "light"}]}]}, {"id": "62615ca7-6e59-4074-8f58-2fe516885860", "name": "H&R Block", "tags": [], "issuers": [], "match_rules": [{"text": "H&R Block", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "H&R Block", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47f0a7a1-ce69-4356-88d2-d83b8b49befb", "name": "H&R Block", "icons": [{"id": "2d08682a-9b45-4ecd-b828-f24f52263817", "name": "H&R Block", "type": "light"}]}]}, {"id": "62669444-e58b-49b9-9c9a-8c042865ceb0", "name": "VolantaApp", "tags": [], "issuers": ["VolantaApp"], "match_rules": null, "icons_collections": [{"id": "d7b9013c-1ead-4de4-968f-b5233a1bd44c", "name": "VolantaApp", "icons": [{"id": "e2891051-310f-487b-839d-7ed83fbcbfc9", "name": "VolantaApp", "type": "light"}]}]}, {"id": "62d46581-9f65-4b34-b415-214726bd4e86", "name": "Invictus Capital", "tags": [], "issuers": [], "match_rules": [{"text": "Invictus Capital", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Invictus Capital", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0ce28e8b-c2d8-4976-9f4d-7efff0c47757", "name": "Invictus Capital", "icons": [{"id": "a2485f3e-50c2-4f57-93b7-56d2fde4b734", "name": "Invictus Capital", "type": "light"}]}]}, {"id": "62e56d6c-c438-4949-a033-c7588b92e403", "name": "Trello", "tags": [], "issuers": ["Trello"], "match_rules": [], "icons_collections": [{"id": "af39f910-f20f-4210-9f02-4d91ae108fc7", "name": "Trello", "icons": [{"id": "fa9d64f9-725b-4f23-85d2-1b78ef050870", "name": "Trello", "type": "light"}]}]}, {"id": "63751c07-45a7-470a-9ce0-22968fbcb53c", "name": "Gandi", "tags": [], "issuers": [], "match_rules": [{"text": "Gandi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Gandi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "51332a22-9137-4fde-93e0-2ecf87f544c4", "name": "Gandi", "icons": [{"id": "2fae911a-1989-4817-b6db-75c80698492c", "name": "Gandi", "type": "light"}]}]}, {"id": "63ac70c3-a0b7-42ea-b638-39b685f0780f", "name": "500px.com", "tags": ["px"], "issuers": ["500px"], "match_rules": null, "icons_collections": [{"id": "4362ce74-062f-4794-8e3c-08b39ee0b8e5", "name": "500px", "icons": [{"id": "8ac2fbcd-b737-44a5-950d-7047fb0b72c3", "name": "500px", "type": "light"}, {"id": "b3c38c32-a348-4f8f-bf3b-6d22256d8fbb", "name": "500px", "type": "dark"}]}]}, {"id": "63cbf7e9-87b0-41d1-b242-c90ad2783a63", "name": "LiteBit", "tags": [], "issuers": ["litebit.eu"], "match_rules": [], "icons_collections": [{"id": "f4f47eab-e255-48ef-9be8-558f3c6af045", "name": "LiteBit", "icons": [{"id": "a2948dc2-3db9-485c-b59c-d006de6ab043", "name": "LiteBit", "type": "light"}]}]}, {"id": "63d68c75-4211-459c-94c1-9774b81ad290", "name": "Close", "tags": [], "issuers": [], "match_rules": [{"text": "Close", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Close", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "99477aad-aeed-4726-8e7d-6254d594006e", "name": "Close", "icons": [{"id": "e04fff1f-19ed-43d1-b64d-c6a873dcb7fc", "name": "Close", "type": "light"}]}]}, {"id": "63dc4e18-61e3-4874-96a5-a5a47b490a8e", "name": "SproutSocial", "tags": [], "issuers": [], "match_rules": [{"text": "SproutSocial", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SproutSocial", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ec17be6c-a282-45af-a4ee-8468cd761fc8", "name": "SproutSocial", "icons": [{"id": "7c3f178e-b3b2-4dfa-b625-d63ee68ca533", "name": "SproutSocial", "type": "light"}]}]}, {"id": "63f0bdaf-94fe-4b4c-983f-90442877f0ec", "name": "Uber", "tags": [], "issuers": ["Uber"], "match_rules": [], "icons_collections": [{"id": "b73cc164-8763-4826-8603-0c79f08a1eb5", "name": "Uber", "icons": [{"id": "3a0b50f1-8fc6-46dc-afb7-de1cb61bb8d2", "name": "Uber", "type": "light"}]}]}, {"id": "6440abaf-a8cc-4bfa-a859-6915a6aa6ea2", "name": "ServerPilot", "tags": [], "issuers": [], "match_rules": [{"text": "ServerPilot", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ServerPilot", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "09759620-55c0-415e-adbd-bb158266d437", "name": "ServerPilot", "icons": [{"id": "93f501de-e7de-44d2-b91a-3359124d7e95", "name": "ServerPilot", "type": "light"}, {"id": "de967077-4e1a-4f92-8a91-bb6931981d63", "name": "ServerPilot", "type": "dark"}]}]}, {"id": "64586867-b4b4-493a-80c5-decc332c24e1", "name": "Bubble", "tags": [], "issuers": [], "match_rules": [{"text": "Bubble", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bubble", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "70b18229-ccd0-466c-8779-fc67ab6f6d97", "name": "Bubble", "icons": [{"id": "6c7f120b-1dc5-4588-83ed-e7a8c19cc507", "name": "Bubble", "type": "dark"}, {"id": "8d0d45e7-b665-4081-a0f4-0b45f7958953", "name": "Bubble", "type": "light"}]}]}, {"id": "6481dfa9-0bb0-4a14-a431-0e1a3ac8ceab", "name": "CosmicPvP", "tags": [], "issuers": ["CosmicPvP"], "match_rules": [{"text": "cosmicpvp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a3e24799-f3f1-4daa-b5d2-244bfe53a19f", "name": "CosmicPvP", "icons": [{"id": "43529436-e2b5-4ccc-9c3e-9464638aef8e", "name": "CosmicPvP", "type": "light"}]}]}, {"id": "64a8c1f2-e53a-4d5c-82f2-f7c489814230", "name": "Real Debrid", "tags": [], "issuers": [], "match_rules": [{"text": "Real Debrid", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Real Debrid", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Real(\\+|\\s|-|_)Debrid", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Real(\\+|\\s|-|_)Debrid", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "ad8f53c2-ec3e-4bbb-9c3f-74a282e13714", "name": "Real Debrid", "icons": [{"id": "051cf198-42e8-41cc-8a2e-de26b51184fb", "name": "Real Debrid", "type": "light"}]}]}, {"id": "64c56626-9e78-433d-aae4-6adeeb7bdee0", "name": "Justworks", "tags": [], "issuers": [], "match_rules": [{"text": "Justworks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Justworks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dccfb638-397f-4eef-805a-3ba0eaa5858a", "name": "Justworks", "icons": [{"id": "d8394f3a-77a2-4add-b097-cd7468e63679", "name": "Justworks", "type": "light"}]}]}, {"id": "64d062c5-f527-4454-a1f3-b5eb4fc81824", "name": "Vivaldi", "tags": [], "issuers": [], "match_rules": [{"text": "Vivaldi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Vivaldi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ed14a5fd-6c90-4930-8544-e6cf6df9ecc5", "name": "Vivaldi", "icons": [{"id": "3bf330b1-05c2-407b-8272-1ef0084465b6", "name": "Vivaldi", "type": "light"}]}]}, {"id": "652baed8-fd89-4599-a474-187bb1fc1915", "name": "Ting", "tags": [], "issuers": [], "match_rules": [{"text": "Ting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Ting", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6a138fc7-dcb6-41c2-ae93-08944e969bc4", "name": "Ting", "icons": [{"id": "2e9e04b0-b517-490a-887d-7b08251b289d", "name": "Ting", "type": "light"}]}]}, {"id": "658e12d3-50e5-4321-a388-764188d77143", "name": "Bitbns", "tags": [], "issuers": [], "match_rules": [{"text": "Bitbns", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitbns", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9fd1cf1-c231-429f-a13c-6bd08d46d07f", "name": "Bitbns", "icons": [{"id": "1998d4e4-dc7b-486c-a187-61b62283cc5f", "name": "Bitbns", "type": "light"}]}]}, {"id": "65c4dd13-37fe-400b-9240-2ae7c136d6d6", "name": "KickEX", "tags": [], "issuers": [], "match_rules": [{"text": "KickEX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "KickEX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f601be29-045e-46d4-bfaa-7995cfbde28e", "name": "KickEX", "icons": [{"id": "f5dc9f22-7f7b-45b9-bd45-dea43d00dac0", "name": "KickEX", "type": "light"}]}]}, {"id": "66133db9-164c-4c39-9ede-f909c667fe1c", "name": "BuiltByBit", "tags": [], "issuers": [], "match_rules": [{"text": "builtbybit.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "0f20b30c-1147-485c-b839-2a44a29defa2", "name": "BuiltByBit", "icons": [{"id": "a36c7fb5-2877-44e8-96b1-c5ce7f8c1680", "name": "BuiltByBit", "type": "light"}]}]}, {"id": "66917fb1-38a9-4ae7-95e6-f0ec44746d05", "name": "Storj", "tags": [], "issuers": [], "match_rules": [{"text": "STORJ", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "c6360125-33fe-492a-a2cd-57dd72c18cd3", "name": "Storj.io", "icons": [{"id": "5c986ac9-8e6c-47ca-86f7-93799ed8dd05", "name": "Storj.io", "type": "light"}]}]}, {"id": "6696008c-5ff3-437a-a80d-665a3776a21b", "name": "Migadu", "tags": [], "issuers": [], "match_rules": [{"text": "Migadu", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Migadu", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "941eada5-6fbf-4c78-8096-e51536ec4ce2", "name": "Migadu", "icons": [{"id": "d27697c2-9622-403d-b39c-c7f4b3000bea", "name": "Migadu", "type": "light"}]}]}, {"id": "66e3c12a-d465-427a-8561-1289d6e5bfc5", "name": "Rapid", "tags": ["api"], "issuers": [], "match_rules": [{"text": "RapidAPI", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "a713516c-1656-40b8-91ba-85e986805575", "name": "Rapid", "icons": [{"id": "d0b633e3-6492-4600-9476-4234d30b7ad8", "name": "Rapid", "type": "light"}]}]}, {"id": "66e82703-80a8-41ff-885c-1e677bcc9db8", "name": "N-able", "tags": [], "issuers": [], "match_rules": [{"text": "N-able", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "N-able", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ebda71a0-a384-48de-a3cc-bdb3e92c539b", "name": "N-able", "icons": [{"id": "2293347d-0c79-4d24-928f-a797fc0f29c1", "name": "N-able", "type": "dark"}, {"id": "8445a8a1-ea77-4c57-89ed-7c128d3cfd2a", "name": "N-able", "type": "light"}]}]}, {"id": "671c86ca-8ebd-4dd3-88ff-0a4906b2cc63", "name": "BitcoinTrade", "tags": [], "issuers": [], "match_rules": [{"text": "BitcoinTrade", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitcoinTrade", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "506c2d5e-3dd1-4b9d-b863-468aa1760204", "name": "BitcoinTrade", "icons": [{"id": "26068f2b-c976-4723-881e-aa5de873952b", "name": "BitcoinTrade", "type": "light"}]}]}, {"id": "678bf6be-c919-49c4-ad4e-3ff5d2141803", "name": "Dr. Windows", "tags": [], "issuers": ["Dr. Windows"], "match_rules": null, "icons_collections": [{"id": "b92626fe-68ff-449e-ba64-3e92d55ac2d2", "name": "Dr. Windows", "icons": [{"id": "11361929-9c24-4237-a01a-810000abaf29", "name": "Dr. Windows", "type": "light"}]}]}, {"id": "67dd0749-99e2-405a-9d35-160a1439b1ce", "name": "Carrd", "tags": [], "issuers": ["Carrd"], "match_rules": null, "icons_collections": [{"id": "40577f08-9491-47ab-8d7a-dd9e4e0061b7", "name": "Carrd", "icons": [{"id": "2a9444b9-4af3-43d4-90e4-cca39e5d2853", "name": "Carrd", "type": "light"}]}]}, {"id": "6825a24c-6e3a-4e0c-b0cf-8de9a1294459", "name": "EasySendy", "tags": [], "issuers": [], "match_rules": [{"text": "EasySendy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "EasySendy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c9b4b55a-ad1d-40e0-a8b6-7e47ae3d79ee", "name": "EasySendy", "icons": [{"id": "0943b3b1-6a45-4e93-a3ae-230c7a1d2903", "name": "EasySendy", "type": "light"}]}]}, {"id": "6836df23-9be1-4fe5-865d-98e2a78154a5", "name": "Domgate", "tags": [], "issuers": [], "match_rules": [{"text": "Domgate", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Domgate", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "05c4e169-dd59-44b4-8631-87eb4deac233", "name": "Domgate", "icons": [{"id": "a821821b-5380-42b1-ba5a-fcd133f54751", "name": "Domgate", "type": "dark"}, {"id": "d8467698-1c5b-43bd-a1a9-38ea6b2af66a", "name": "Domgate", "type": "light"}]}]}, {"id": "689e8b6b-63d2-41e3-a7bb-6f935260d0cf", "name": "WeVPN", "tags": [], "issuers": [], "match_rules": [{"text": "WeVPN", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "bf159c1f-31b1-4db3-a8bd-802345ec8a4d", "name": "WeVPN", "icons": [{"id": "88501443-4a33-4f02-883e-e5eb8ea5cdda", "name": "WeVPN", "type": "light"}, {"id": "c5d4d7bd-1a3d-41ff-b223-94390fa472e5", "name": "WeVPN", "type": "dark"}]}]}, {"id": "68c47a3b-5a05-4f56-8096-078a5b9b8e1f", "name": "itch.io", "tags": [], "issuers": ["itch.io"], "match_rules": null, "icons_collections": [{"id": "3ce6bb6a-a1d6-4ac3-8125-a556deee362a", "name": "itch.io", "icons": [{"id": "003f4679-36b8-4fe3-bb99-b8c08cbf31c5", "name": "itch.io", "type": "light"}, {"id": "4abe62ee-7869-4324-9679-363e24216960", "name": "itch.io", "type": "dark"}]}]}, {"id": "690233b0-1e1d-4e7a-a89b-375862cc4666", "name": "BitSkins", "tags": [], "issuers": ["BitSkins"], "match_rules": [], "icons_collections": [{"id": "cd08463b-4344-4269-8561-60029f98ba5b", "name": "BitSkins", "icons": [{"id": "09b37953-f46b-41a2-9888-903ab6ab16ff", "name": "BitSkins", "type": "light"}]}]}, {"id": "6902e7bd-1cf1-4ad2-8151-b7966680b7bf", "name": "Hurricane Electric", "tags": [], "issuers": [], "match_rules": [{"text": "Hurricane Electric", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hurricane Electric", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85c3cf65-87c1-432e-a867-628fc706f86f", "name": "Hurricane Electric", "icons": [{"id": "4ef62790-2299-4c6d-bc22-b93cc4549d4e", "name": "Hurricane Electric", "type": "light"}, {"id": "f3a1006f-cc23-4986-88d4-e59de34808c9", "name": "Hurricane Electric", "type": "dark"}]}]}, {"id": "69525c4f-b30c-4de9-a961-0f5f7910ac87", "name": "Amplenote", "tags": [], "issuers": [], "match_rules": [{"text": "Amplenote", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Amplenote", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "50a0f6c4-5844-4eb5-86d8-bfc1108b178b", "name": "Amplenote", "icons": [{"id": "5d30a2f3-ea07-452a-8c18-7cc5e07414d6", "name": "Amplenote", "type": "light"}]}]}, {"id": "699c584e-79cf-414b-94d5-64784459f7ed", "name": "Bitrise", "tags": [], "issuers": ["bitrise.io"], "match_rules": [], "icons_collections": [{"id": "7eb65e52-5408-4f85-8500-1da6aecac467", "name": "Bitrise", "icons": [{"id": "7103908e-d834-4f9e-b6f9-96949db0a29b", "name": "Bitrise", "type": "light"}, {"id": "95143e44-b3b0-448d-afe7-dfd0ab399942", "name": "Bitrise", "type": "dark"}]}]}, {"id": "6a2fde3a-b8b2-4321-8a68-d8d2e4ba2ad7", "name": "Onshape", "tags": [], "issuers": [], "match_rules": [{"text": "Onshape", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Onshape", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3014f069-0e58-4015-afcd-5224db4bff96", "name": "Onshape", "icons": [{"id": "823f0ddc-3511-450d-ae73-b012d97e644f", "name": "Onshape", "type": "light"}]}]}, {"id": "6ab00aeb-5f0e-4e29-bb8c-e5b4ae76774c", "name": "Packagist.org", "tags": [], "issuers": ["Packagist"], "match_rules": null, "icons_collections": [{"id": "c3f63528-eece-438a-a74d-ae7ac8c74bfb", "name": "Packagist.org", "icons": [{"id": "fcb9f3e5-ad28-4743-92ad-d66c066a0b4d", "name": "Packagist.org", "type": "light"}]}]}, {"id": "6ab5f6f1-40f4-41e4-82ff-0dd11f9b676c", "name": "Bitkub", "tags": [], "issuers": [], "match_rules": [{"text": "BitKub.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "995db454-f44b-4f16-babf-9e7435dd64c9", "name": "Bitkub", "icons": [{"id": "1944da39-da14-4a3f-bd70-67394135a258", "name": "Bitkub", "type": "light"}]}]}, {"id": "6ace2d5b-c8c6-4e59-95f3-bdc853582d11", "name": "Yotta", "tags": [], "issuers": [], "match_rules": [{"text": "Yotta", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Yotta", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "31b019a6-edd6-48e3-8766-b7eb842899d3", "name": "Yotta", "icons": [{"id": "88215495-ab22-4533-b96d-5b319de880db", "name": "Yotta", "type": "light"}]}]}, {"id": "6b4613c9-b31f-44d7-b498-db0813243983", "name": "Payworks", "tags": [], "issuers": [], "match_rules": [{"text": "Payworks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Payworks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2b16924d-bb0f-453e-a2f0-03c5b0877467", "name": "Payworks", "icons": [{"id": "0b20ed6f-5757-450b-b7ce-3553639e7c91", "name": "Payworks", "type": "light"}]}]}, {"id": "6b563b30-0251-4f4d-bad5-bad41c04273b", "name": "ActiveState", "tags": [], "issuers": [], "match_rules": [{"text": "ActiveState", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ActiveState", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Active State", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Active State", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7b8823ba-f7fd-4d17-b9ad-d5ae5da25c46", "name": "ActiveState", "icons": [{"id": "12b86c29-3a8b-4604-aead-5345f1e8277b", "name": "ActiveState", "type": "light"}, {"id": "dbbd2f3f-5bea-4975-bbf7-f95ee29f6e4f", "name": "ActiveState", "type": "dark"}]}]}, {"id": "6b67b5c1-4824-4038-a875-58cb18ef5d55", "name": "Namesco", "tags": [], "issuers": [], "match_rules": [{"text": "Namesco", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Namesco", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f50c4529-0ee0-42cc-beda-64e0425f9242", "name": "Namesco", "icons": [{"id": "e636b2f4-3cff-464f-a51c-65bf317bf4e6", "name": "Namesco", "type": "light"}, {"id": "ee05d84e-b01d-4274-9482-c5f5e234a218", "name": "Namesco", "type": "dark"}]}]}, {"id": "6ba3148a-c0a2-4e2f-9ee5-40dbde6130ba", "name": "AppVeyor", "tags": [], "issuers": [], "match_rules": [{"text": "AppVeyor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AppVeyor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "11b81890-f35a-4779-8268-98c62618bed4", "name": "AppVeyor", "icons": [{"id": "bb6f3517-128c-4249-bfb3-68b93c4ecf64", "name": "AppVeyor", "type": "light"}]}]}, {"id": "6bddaf34-c512-477b-ac4c-2ab953546f9f", "name": "Korbit", "tags": [], "issuers": [], "match_rules": [{"text": "Korbit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Korbit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fc184076-506e-499f-8a9d-0a618c5db0b9", "name": "Korbit", "icons": [{"id": "7b0a8b60-90a4-4ea0-82f6-5698c33e4fe2", "name": "Korbit", "type": "dark"}, {"id": "c49c7df7-cab8-412b-91e4-6c2e2647c0f9", "name": "Korbit", "type": "light"}]}]}, {"id": "6be22afd-1d40-4375-b5da-5581b886edb8", "name": "Bitvavo", "tags": [], "issuers": ["Bitvavo"], "match_rules": [], "icons_collections": [{"id": "d0785c6f-c7b9-4f15-8521-2162f44f645c", "name": "Bitvavo", "icons": [{"id": "87ae7734-a0b8-48bf-a140-3090bdc183e3", "name": "Bitvavo", "type": "light"}]}]}, {"id": "6bf484c8-e094-42f3-8767-23621b953453", "name": "Circle", "tags": [], "issuers": [], "match_rules": [{"text": "Circle", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Circle", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7d59072a-b3e2-4d85-a22a-2f99c3795f61", "name": "Circle", "icons": [{"id": "2103e00c-ecff-4a85-80c0-a8064b5d5d1a", "name": "Circle", "type": "light"}]}]}, {"id": "6c473443-8455-46e9-8534-10f2f8ca09f4", "name": "Bitcoin.de", "tags": [], "issuers": [], "match_rules": [{"text": "Bitcoin.de", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitcoin.de", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "69bfaaec-2ce9-4cc3-b632-318f87407434", "name": "Bitcoin.de", "icons": [{"id": "d593aba1-83ae-4c9b-b62d-c0c817b3626a", "name": "Bitcoin.de", "type": "light"}]}]}, {"id": "6c72507c-2c2b-491f-9aab-44ba42cf2f36", "name": "Woodforest National Bank", "tags": [], "issuers": [], "match_rules": [{"text": "Woodforest National Bank", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Woodforest National Bank", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b70a8dc-5839-4bbd-80f3-edc7eb31233a", "name": "Woodforest National Bank", "icons": [{"id": "ab36011d-546d-44b9-bf15-6bd613b3139f", "name": "Woodforest National Bank", "type": "light"}]}]}, {"id": "6cfdc4bd-9803-465f-9d17-13806162019c", "name": "Gusto", "tags": [], "issuers": [], "match_rules": [{"text": "gusto", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bf35e203-8367-4eb4-a9ea-d6b22319b761", "name": "Gusto", "icons": [{"id": "62235f88-e4cd-4db0-8790-32217046d9b1", "name": "Gusto", "type": "light"}]}]}, {"id": "6d03b06b-bbb7-4cba-829c-9eabeaa9a0ab", "name": "The Good Cloud", "tags": [], "issuers": ["The Good Cloud"], "match_rules": null, "icons_collections": [{"id": "61022fe4-5b24-452c-8085-81bf30cc6dec", "name": "The Good Cloud", "icons": [{"id": "4b09a87f-f6af-4df0-8091-0a9c81bef2ed", "name": "The Good Cloud", "type": "light"}, {"id": "a822ea60-496b-4de6-ac69-679c5d8ebb28", "name": "The Good Cloud", "type": "dark"}]}]}, {"id": "6d1bfc32-c7ef-4e4b-a975-0d0e2642721f", "name": "TP-Link", "tags": [], "issuers": ["TP-Link"], "match_rules": null, "icons_collections": [{"id": "c0559e31-612c-4a18-b030-65ac6b60e950", "name": "TP-Link", "icons": [{"id": "b8a31420-f83d-49cf-9d6f-fce941d98896", "name": "TP-Link", "type": "light"}]}]}, {"id": "6d3b671f-4a61-410c-824d-3ee6af5b180a", "name": "Dynadot", "tags": [], "issuers": [], "match_rules": [{"text": "Dynadot", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Dynadot", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8405fba4-a4c1-49bf-b7e9-87479e2d17e8", "name": "Dynadot", "icons": [{"id": "e48961bc-9d3f-46a5-b80f-32ce322d8a2a", "name": "Dynadot", "type": "light"}]}]}, {"id": "6d4ecb97-c1b7-4520-ac11-85d3d748f3b3", "name": "Azusa Pacific University", "tags": [], "issuers": [], "match_rules": [{"text": "APU", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "3a4351af-846d-4c0c-88d9-c084688ba401", "name": "Azusa Pacific University", "icons": [{"id": "0ddacfb0-9e8b-4c12-b10a-e73582a3d4a2", "name": "Azusa Pacific University", "type": "light"}]}]}, {"id": "6dadc18b-d1bc-44f9-a046-b72de56a0808", "name": "DNSFilter", "tags": [], "issuers": [], "match_rules": [{"text": "DNSFilter", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DNSFilter", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b700e46e-fdd7-44e7-a0eb-20d3f5228926", "name": "DNSFilter", "icons": [{"id": "358a491e-2ca9-4e60-ae27-bc99f040318f", "name": "DNSFilter", "type": "light"}]}]}, {"id": "6dc6c359-75a2-48ca-82e7-cf6ac8d98a68", "name": "Poloniex", "tags": [], "issuers": [], "match_rules": [{"text": "@poloniex.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bb70ee48-ae34-40c2-bf4c-e941ed9e04f1", "name": "Poloniex", "icons": [{"id": "32500ccd-44c1-4765-bc5c-735bd53e41e1", "name": "Poloniex", "type": "light"}, {"id": "4bf85c84-b49d-4503-8a7e-52ca2d68941b", "name": "Poloniex", "type": "dark"}]}]}, {"id": "6dd72222-a13a-480b-9f02-7137d5604ab3", "name": "Flourish", "tags": [], "issuers": [], "match_rules": [{"text": "Flourish", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Flourish", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8a5c7008-131a-495f-a8ca-71d775eb42b8", "name": "Flourish", "icons": [{"id": "d9c7e47a-dfed-400b-8cb9-cb9cb89e698e", "name": "Flourish", "type": "light"}]}]}, {"id": "6df2ae22-c09e-436a-9b4f-34f2b0e0f814", "name": "Uber Eats", "tags": [], "issuers": [], "match_rules": [{"text": "Uber Eats", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Uber Eats", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f2900828-1b1e-47ff-8a72-276f8e9a6e20", "name": "Uber Eats", "icons": [{"id": "9510008b-9a51-4168-b71e-4d6d7711517f", "name": "Uber Eats", "type": "light"}]}]}, {"id": "6dfb21f3-d658-47d8-9a36-0f3c4336de6b", "name": "Prey", "tags": [], "issuers": [], "match_rules": [{"text": "Prey", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Prey", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "404f2d53-f0a9-4420-ad92-0c7fcf23ffd7", "name": "Prey", "icons": [{"id": "b4a258ec-db23-4723-9560-40f75321aeb3", "name": "Prey", "type": "light"}, {"id": "e9d1f106-29dc-4018-906f-4e70fda82b21", "name": "prey", "type": "dark"}]}]}, {"id": "6e7521e9-5b52-44f0-b1c0-a3222edd1e7f", "name": "myPrimobox", "tags": [], "issuers": [], "match_rules": [{"text": "myPrimobox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "myPrimobox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c1351145-f405-44ef-809f-82e373c19653", "name": "myPrimobox", "icons": [{"id": "4ed9fd36-3f0a-4f05-bd83-97f41808b267", "name": "myPrimobox", "type": "light"}]}]}, {"id": "6ea011df-4a59-47a0-a839-3a4b94fee389", "name": "Demio", "tags": [], "issuers": [], "match_rules": [{"text": "Demio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Demio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9c7a591-2ab8-4b6f-9653-cee4370ba2ca", "name": "Demio", "icons": [{"id": "25ec0196-6726-4864-8a7e-2b10ea01c817", "name": "Demio", "type": "light"}]}]}, {"id": "6ec20803-2859-460a-9a76-939e9f092f08", "name": "Sellix", "tags": [], "issuers": [], "match_rules": [{"text": "Sellix", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sellix", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e1f5907e-b856-4e39-a4f4-4e6aea7cfbe4", "name": "Sellix", "icons": [{"id": "16bf5e40-f5ee-4c53-a19f-6599e8334860", "name": "Sellix", "type": "light"}, {"id": "47987d99-5c1a-4624-b4be-7cdaa1fd8859", "name": "Sellix", "type": "dark"}]}]}, {"id": "6eeab7e7-197d-47d1-a18f-7cada1793da4", "name": "Intercom", "tags": [], "issuers": ["Intercom"], "match_rules": null, "icons_collections": [{"id": "08148e29-ea43-456a-9cbb-25b40172428f", "name": "Intercom", "icons": [{"id": "57f062b1-3bc8-46de-9f75-59e8b8d798d3", "name": "Intercom", "type": "light"}, {"id": "5e4451df-6819-4160-9cf8-2bfd212451af", "name": "Intercom", "type": "dark"}]}]}, {"id": "6efd7b62-e065-4a91-aa32-0144f76b9a5b", "name": "Report URI", "tags": [], "issuers": [], "match_rules": [{"text": "Report URI", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Report URI", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "73754151-9afe-412d-937e-29f530fb6c69", "name": "Report URI", "icons": [{"id": "6a8a9bf3-3028-4602-a5a8-8a71343e3cc1", "name": "Report URI", "type": "light"}]}]}, {"id": "6f493f40-3c26-4cb0-a4ba-3563c91c38de", "name": "\u041f\u0430\u0447\u043a\u0430", "tags": [], "issuers": [], "match_rules": [{"text": "\u041f\u0430\u0447\u043a\u0430", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "\u041f\u0430\u0447\u043a\u0430", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5a9dbc0c-ed8c-445e-a5e1-1f55d21c6a33", "name": "\u041f\u0430\u0447\u043a\u0430", "icons": [{"id": "66c85bd7-cc79-47ba-97fd-e8c74f817c56", "name": "\u041f\u0430\u0447\u043a\u0430", "type": "dark"}, {"id": "90f7cbb3-52ed-4188-a573-20cb4b3e2c98", "name": "\u041f\u0430\u0447\u043a\u0430", "type": "light"}]}]}, {"id": "6fa66106-36f1-4dc1-aa1a-9bde97ee3756", "name": "Joyent", "tags": [], "issuers": [], "match_rules": [{"text": "Joyent", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Joyent", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d19f6bdb-9893-4cca-b71c-18e8eeeefb04", "name": "Joyent", "icons": [{"id": "b87d64b2-f16c-4e68-b06e-ad9827a920f9", "name": "Joyent", "type": "light"}]}]}, {"id": "6fd43e39-5def-4ba6-943c-428af1a61db5", "name": "Lightlytics", "tags": [], "issuers": ["Lightlytics"], "match_rules": null, "icons_collections": [{"id": "2e5e89d5-55b0-44f9-b8d0-a227ce5c6134", "name": "Lightlytics", "icons": [{"id": "7bdfd98f-7631-4b8e-8ee3-e845cac644fc", "name": "Lightlytics", "type": "light"}]}]}, {"id": "6ff5d06a-2ebb-431c-8466-b1750c1b1aa8", "name": "SeatGeek", "tags": [], "issuers": [], "match_rules": [{"text": "SeatGeek", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SeatGeek", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "34b82477-092e-4699-89ff-f6ef734bbbe0", "name": "SeatGeek", "icons": [{"id": "5034c233-098f-42c0-bb95-d7020166cd66", "name": "SeatGeek", "type": "light"}]}]}, {"id": "7000b3fc-b371-4348-baea-9fc1da426f9d", "name": "Lichess", "tags": [], "issuers": ["lichess.org"], "match_rules": null, "icons_collections": [{"id": "a7262f92-f8f6-46e4-b0d8-e0a11b4c251e", "name": "Lichess", "icons": [{"id": "02c37dae-3a52-4a3a-9930-b6685834666e", "name": "Lichess", "type": "dark"}, {"id": "8df2eb41-2dcd-4867-bb2f-3f5075c953fd", "name": "Lichess", "type": "light"}]}]}, {"id": "7003a9bc-4b97-4dae-9d3c-0570b60d0c70", "name": "Hover", "tags": [], "issuers": ["Hover"], "match_rules": null, "icons_collections": [{"id": "a2533a1d-3f07-4f86-aae6-5555a35cce0b", "name": "Hover", "icons": [{"id": "08a4c8f7-1523-4791-abe7-d4ead4edcb44", "name": "Hover", "type": "light"}]}]}, {"id": "7014974d-2b62-4420-8240-b7a3b64e775c", "name": "Square", "tags": [], "issuers": [], "match_rules": [{"text": "Square", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Square", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "659a1800-4cfc-432b-a7b7-60a826cbb97b", "name": "Square", "icons": [{"id": "78f47fe8-0605-4f65-af58-4a300a074c21", "name": "Square", "type": "light"}, {"id": "d4f6e8ef-544e-4bdf-8838-64ef059ac70a", "name": "Square", "type": "dark"}]}]}, {"id": "702292df-58d9-4c69-807c-b3e62dfb942f", "name": "Metorik", "tags": [], "issuers": [], "match_rules": [{"text": "Metorik", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Metorik", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b8df9139-8ac4-40ee-a842-8b14b979e974", "name": "Metorik", "icons": [{"id": "150ca369-238c-472b-ad25-dbdb6dbec70d", "name": "Metorik", "type": "light"}]}]}, {"id": "70657302-3333-4f5b-8b12-4d61c6a0f141", "name": "Hostwinds", "tags": [], "issuers": [], "match_rules": [{"text": "Hostwinds", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hostwinds", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a4307423-93b2-4729-a594-9483b7974c4a", "name": "Hostwinds", "icons": [{"id": "4d3f0a6e-77fc-47ba-bed4-9fc9ce08dbc0", "name": "Hostwinds", "type": "light"}]}]}, {"id": "70a46ec0-3965-4138-89ce-c05555281cc8", "name": "Zoolz", "tags": [], "issuers": [], "match_rules": [{"text": "Zoolz", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Zoolz", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "341014c7-6cda-4fd8-a355-d4fa1c7ef7ae", "name": "Zoolz", "icons": [{"id": "c5801f06-a821-467f-a94b-8c8e36f33a78", "name": "Zoolz", "type": "light"}]}]}, {"id": "70dc642b-ed96-4bd4-89ec-9a18a6cf7e1f", "name": "Redis Enterprise Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "Redis Enterprise Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Redis Enterprise Cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d94215c9-ca7c-4306-9f49-aa5db850db2a", "name": "Redis Enterprise Cloud", "icons": [{"id": "0c1aa87c-b394-4c71-b49c-b702da34029f", "name": "Redis Enterprise Cloud", "type": "light"}]}]}, {"id": "71426a98-e772-416a-b691-0c5630aed184", "name": "ZAP-Hosting", "tags": [], "issuers": ["ZAP-Hosting"], "match_rules": null, "icons_collections": [{"id": "aadf5a54-895b-401d-8a2d-608d26f037bb", "name": "ZAP-Hosting", "icons": [{"id": "5e72201e-4a18-448c-a881-8e25ef3c6698", "name": "ZAP-Hosting", "type": "dark"}, {"id": "c492431d-1a51-4ad7-a000-c008e91d71af", "name": "ZAP-Hosting", "type": "light"}]}]}, {"id": "7143fd13-09a8-4256-9bef-b1055689a8b5", "name": "Neeva", "tags": [], "issuers": ["login.neeva.com"], "match_rules": null, "icons_collections": [{"id": "5d6912b0-60c3-4794-848c-a15eed8baa65", "name": "Neeva", "icons": [{"id": "b4f3be2d-9b1f-477d-9cbc-b51dee4c71ac", "name": "Neeva", "type": "light"}]}]}, {"id": "7167b7dc-8d8e-4053-9479-26d649ba05a5", "name": "ThreatConnect", "tags": [], "issuers": [], "match_rules": [{"text": "ThreatConnect", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ThreatConnect", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d83b6c20-fb9b-43dc-817f-56d9183de14d", "name": "ThreatConnect", "icons": [{"id": "70ea3a84-a760-4ad5-99d6-33612e145aba", "name": "ThreatConnect", "type": "light"}]}]}, {"id": "7179d190-041e-4cc9-bcef-c8a15c25384c", "name": "Philipps-Universit\u00e4t Marburg", "tags": [], "issuers": [], "match_rules": [{"text": "Philipps-Universit\u00e4t Marburg", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Philipps-Universit\u00e4t Marburg", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "13fcd46b-0788-418a-8a4c-d8aef91c40b8", "name": "Philipps-Universit\u00e4t Marburg", "icons": [{"id": "a0ea05dc-1f0d-4147-b5b9-79a8687b0923", "name": "Philipps-Universit\u00e4t Marburg", "type": "light"}, {"id": "d27f4295-fefa-44cd-a65a-afb7a49f59ea", "name": "Philipps-Universit\u00e4t Marburg", "type": "dark"}]}]}, {"id": "718fa787-bac4-498d-8447-15a6077789ef", "name": "IGN", "tags": [], "issuers": ["IGN.com"], "match_rules": null, "icons_collections": [{"id": "bbb28b1b-8430-4579-b1c2-ce49f9b16f84", "name": "IGN", "icons": [{"id": "2559f9be-763f-4558-b5e6-b89ee4ea44d8", "name": "IGN", "type": "light"}]}]}, {"id": "726e45b9-e811-428c-8be4-f52cfb810578", "name": "Synergy Wholesale", "tags": [], "issuers": [], "match_rules": [{"text": "Synergy Wholesale", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Synergy Wholesale", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d684c953-c5c7-4241-ad0b-631ea0d07242", "name": "Synergy Wholesale", "icons": [{"id": "6f2689fb-742f-4360-935f-7ccea778d212", "name": "Synergy Wholesale", "type": "light"}]}]}, {"id": "7282fe22-16c4-4102-ab7b-6960dea69951", "name": "SecurityTrails", "tags": [], "issuers": [], "match_rules": [{"text": "SecurityTrails", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SecurityTrails", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1aedea4a-554c-4193-a930-21e5425a7873", "name": "SecurityTrails", "icons": [{"id": "53d77377-a287-487b-a760-43e33c572043", "name": "SecurityTrails", "type": "light"}]}]}, {"id": "72dccd94-b770-4be0-8f1f-c8c40bb85bd0", "name": "Garena", "tags": [], "issuers": [], "match_rules": [{"text": "Garena", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Garena", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "af37a97c-746b-4556-9238-dd32ec8bde62", "name": "Garena", "icons": [{"id": "f5890e9d-b71b-4d71-8688-7214ff7974e5", "name": "Garena", "type": "light"}]}]}, {"id": "730f2dad-0d7d-4574-a714-bd0fb9292ba5", "name": "Fanatical", "tags": [], "issuers": [], "match_rules": [{"text": "Fanatical", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fanatical", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "38136b6d-cdff-44e5-9ff0-c1a478cca5e0", "name": "Fanatical", "icons": [{"id": "a34f5cb2-4946-4f59-9b74-a7ef87a82166", "name": "Fanatical", "type": "light"}]}]}, {"id": "734cb24b-5965-4544-8fda-54132b887e8c", "name": "Ramp", "tags": [], "issuers": [], "match_rules": [{"text": "Ramp", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Ramp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "83a5d693-864d-41ed-baf0-c366a3a53d9c", "name": "Ramp", "icons": [{"id": "62dfc34a-8b52-4ac7-95f4-f537ce4995af", "name": "Ramp", "type": "light"}]}]}, {"id": "73693d82-3dfd-4778-b6a4-359bd8b9e024", "name": "Survicate", "tags": [], "issuers": [], "match_rules": [{"text": "Survicate", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Survicate", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "af641748-6c97-4133-8248-390f34a90ec9", "name": "Survicate", "icons": [{"id": "cd5c6def-d788-4c44-ab63-98876d5be38c", "name": "Survicate", "type": "light"}, {"id": "dcc6987c-8966-4c53-b885-7e517f03dea3", "name": "Survicate", "type": "dark"}]}]}, {"id": "736e2aa2-aee3-46a0-bc69-e3377fd4cf83", "name": "Basecamp", "tags": [], "issuers": ["Basecamp's Launchpad"], "match_rules": null, "icons_collections": [{"id": "c343b6b4-3626-48f5-81c2-84033b5b48b5", "name": "Basecamp", "icons": [{"id": "3f94392f-130b-4ae0-825e-9546534d7f1e", "name": "Basecamp", "type": "dark"}, {"id": "777db411-7d2d-45ae-8bbb-2fa46454f9c6", "name": "Basecamp", "type": "light"}]}]}, {"id": "739f884a-2ed2-40e3-800a-08e1968c274b", "name": "Pritunl", "tags": [], "issuers": [], "match_rules": [{"text": "Pritunl", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pritunl", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2da19ba3-f6cd-4994-84d0-65f55754ec02", "name": "Pritunl", "icons": [{"id": "dca9928d-c12f-4bfb-bdf5-09848f5d52e6", "name": "Pritunl", "type": "light"}]}]}, {"id": "73ec635a-eaf4-4bef-99dd-4a7b154d8451", "name": "Iterable", "tags": [], "issuers": [], "match_rules": [{"text": "Iterable", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Iterable", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47a686d8-58ed-4bd8-a286-2c7a8c66f009", "name": "Iterable", "icons": [{"id": "55cac2a3-9cfc-4557-ad89-8963fe742820", "name": "Iterable", "type": "light"}]}]}, {"id": "7412393c-bc2b-4c7a-b21b-eb9f48673635", "name": "FollowMyHealth", "tags": [], "issuers": [], "match_rules": [{"text": "FollowMyHealth", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FollowMyHealth", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "94e5a921-26dd-4b78-8c78-4071f3fc745b", "name": "FollowMyHealth", "icons": [{"id": "66003ef7-373a-4acb-be38-e14458dfc055", "name": "FollowMyHealth", "type": "light"}]}]}, {"id": "743215a7-3115-4e48-a8f9-e87b103428ae", "name": "Unity", "tags": [], "issuers": ["id.unity.com"], "match_rules": [], "icons_collections": [{"id": "770731de-f13b-4d38-9079-999a869e6389", "name": "Unity", "icons": [{"id": "4accbf21-bda3-4678-b195-0eda4f189897", "name": "Unity", "type": "light"}, {"id": "ef8a7fe5-78f7-4b8f-b093-73f926238136", "name": "Unity", "type": "dark"}]}]}, {"id": "7432959f-6958-4529-8149-f6f071b3d21d", "name": "Nintendo", "tags": [], "issuers": ["Nintendo Account"], "match_rules": [], "icons_collections": [{"id": "3fc48e21-afbc-4a85-aa27-d07130d0c7f2", "name": "Nintendo Account", "icons": [{"id": "2ced9a41-3f26-4faf-909c-999a1598e061", "name": "Nintendo Account", "type": "light"}]}]}, {"id": "7433835d-c9d1-4074-8e84-a3aa33ac3994", "name": "Plaid", "tags": [], "issuers": [], "match_rules": [{"text": "Plaid", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Plaid", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9b47d1e8-9118-45eb-8c90-e2ea3b7b174e", "name": "Plaid", "icons": [{"id": "4ff1a75a-6003-483b-b49e-9b7cf8a1dc07", "name": "Plaid", "type": "light"}, {"id": "74901898-0763-41f0-9998-15a48405576b", "name": "Plaid", "type": "dark"}]}]}, {"id": "744e788d-3975-43ac-8166-0029c9a0871c", "name": "Facebook", "tags": ["fb"], "issuers": ["Facebook"], "match_rules": [], "icons_collections": [{"id": "2100a131-7869-4ca6-b476-f1fc0ef103bf", "name": "Facebook", "icons": [{"id": "639cb321-efe7-4888-995f-a289c97584e2", "name": "Facebook", "type": "light"}]}]}, {"id": "74771336-6bf1-4e7f-8331-3b59feec4710", "name": "Paycor", "tags": [], "issuers": [], "match_rules": [{"text": "Paycor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Paycor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f3b7bdd9-9f8e-4450-baf8-3a8ad24dc1a8", "name": "Paycor", "icons": [{"id": "62a09a3d-7e69-43f8-840c-9255b8344898", "name": "Paycor", "type": "light"}]}]}, {"id": "7540657a-7d4f-4abe-970c-a8267f68e92d", "name": "The Ohio State University", "tags": [], "issuers": [], "match_rules": [{"text": "The Ohio State University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "The Ohio State University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3c4e0dec-21fd-4a72-b9eb-8cdc12f9114c", "name": "The Ohio State University", "icons": [{"id": "1bad8e4a-8273-4713-94c3-9d4f50c9e165", "name": "The Ohio State University", "type": "light"}]}]}, {"id": "75c0caf5-ef29-4761-9884-683c6040feac", "name": "Capital CFD Trading App", "tags": [], "issuers": [], "match_rules": [{"text": "Capital CFD Trading App", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Capital CFD Trading App", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Capital(\\+|\\s|-|_)CFD(\\+|\\s|-|_)Trading(\\+|\\s|-|_)App", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Capital(\\+|\\s|-|_)CFD(\\+|\\s|-|_)Trading(\\+|\\s|-|_)App", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "139544c7-1f23-4442-bccd-b4b40fd73dee", "name": "Capital CFD Trading App", "icons": [{"id": "a470f616-141c-4d47-98ba-75ba720d9b94", "name": "Capital CFD Trading App", "type": "light"}]}]}, {"id": "75dfe838-aa7e-4d36-9b40-eefb24c45407", "name": "Ukr.Net", "tags": [], "issuers": [], "match_rules": [{"text": "Ukr.Net", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Ukr.Net", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4ae2b7c2-0a3f-4b4d-8a74-8be8ce6c6c46", "name": "Ukr.Net", "icons": [{"id": "fb1a8ce1-a24c-4e77-adaf-f9107ab106ba", "name": "Ukr.Net", "type": "light"}]}]}, {"id": "76d0b682-0f5a-4ad9-8c9d-c528652c58fa", "name": "Un1on", "tags": [], "issuers": [], "match_rules": [{"text": "Un1on", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Un1on", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a6e539e8-11e0-4889-bfd7-c57e33dac225", "name": "Un1on", "icons": [{"id": "2e2b38c9-3352-4947-872f-24714413945f", "name": "Un1on", "type": "light"}]}]}, {"id": "7763054c-b3f6-41b9-9ebc-508e0aba3e27", "name": "Wasabi", "tags": [], "issuers": [], "match_rules": [{"text": "Wasabi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wasabi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cb2e0939-87c3-49b5-b727-3dea0f888149", "name": "Wasabi", "icons": [{"id": "803f1dbf-14ae-4545-b432-a516b7509cc5", "name": "Wasabi", "type": "light"}]}]}, {"id": "7773dceb-dfda-4ff7-8a43-f1e8b3f155b4", "name": "Joker.com", "tags": [], "issuers": [], "match_rules": [{"text": "Joker.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Joker.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "19a99019-e536-4afd-9308-178113c287b2", "name": "Joker.com", "icons": [{"id": "54088054-9a43-4f21-9801-fddc87cfc698", "name": "Joker.com", "type": "light"}]}]}, {"id": "77967bdd-6edc-4cd7-961f-acd8a1dd276a", "name": "BGL Corporate Solutions", "tags": [], "issuers": [], "match_rules": [{"text": "BGL Corporate Solutions", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BGL Corporate Solutions", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2415e851-d60b-42e2-8c3e-5e173f141329", "name": "BGL Corporate Solutions", "icons": [{"id": "2037cdd7-da9e-4537-9cbb-4379c762a435", "name": "BGL Corporate Solutions", "type": "dark"}, {"id": "3ef7f131-2931-4929-9ac3-f65199d34286", "name": "BGL Corporate Solutions", "type": "light"}]}]}, {"id": "783cd328-e505-426f-821b-e281fb8e9eda", "name": "Render", "tags": [], "issuers": ["render.com"], "match_rules": null, "icons_collections": [{"id": "20c994fc-bfc4-4ffa-a2ed-b469e03451f1", "name": "Render", "icons": [{"id": "584884ed-88c8-4a4d-bff2-91e105b21de7", "name": "Render", "type": "light"}]}]}, {"id": "784d131b-3688-40d5-a24f-39101716823a", "name": "AJ Bell Youinvest", "tags": [], "issuers": [], "match_rules": [{"text": "ajbell", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ajbell", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "aj bell", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "aj bell", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "youinvest", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "youinvest", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c132e76a-5792-4b93-9e4e-e6220adf5cc0", "name": "AJ Bell Youinvest", "icons": [{"id": "dfb05494-7a0d-4290-a405-94970b667f9d", "name": "AJ Bell Youinvest", "type": "light"}]}]}, {"id": "78651111-6963-4a5e-a5de-77fec9b16139", "name": "OpenDNS", "tags": [], "issuers": [], "match_rules": [{"text": "OpenDNS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OpenDNS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0653f8bb-4659-474c-b353-7003b85ee86d", "name": "OpenDNS", "icons": [{"id": "9f66cbeb-9214-4a82-9ac7-c12793cb2dc1", "name": "OpenDNS", "type": "light"}]}]}, {"id": "78879126-4ef2-45c0-8955-46eebaab8a7f", "name": "Nobitex", "tags": [], "issuers": [], "match_rules": [{"text": "Nobitex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nobitex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "47866168-e422-4275-8e1a-b326e837d57b", "name": "Nobitex", "icons": [{"id": "d793c639-4101-4926-a15c-8ec4489c80f1", "name": "Nobitex", "type": "light"}]}]}, {"id": "78ddee53-9480-4c1d-bc58-5983549c25e3", "name": "Time4VPS", "tags": [], "issuers": [], "match_rules": [{"text": "Time4VPS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Time4VPS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "04931659-0f20-42e6-b51b-6f31f6825210", "name": "Time4VPS", "icons": [{"id": "74e0b645-2e2d-4762-b2b6-1862b35b3c08", "name": "Time4VPS", "type": "light"}]}]}, {"id": "78e11f50-c9f2-457c-b7a1-7620d5f28ab9", "name": "Veracode", "tags": [], "issuers": [], "match_rules": [{"text": "Veracode", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Veracode", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7aecf7e7-fd85-49b4-8112-85e42e0e5370", "name": "Veracode", "icons": [{"id": "a6e94d31-1c27-45fc-a8f1-224b034c0e99", "name": "Veracode", "type": "light"}]}]}, {"id": "78e779cc-4926-4b0e-a58d-056d04acd8e9", "name": "Tito", "tags": [], "issuers": [], "match_rules": [{"text": "Tito", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tito", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "93491c63-eb9e-4bf0-9fcd-0181b1324329", "name": "Tito", "icons": [{"id": "05f54b46-015f-417d-835b-8945b84eba91", "name": "Tito", "type": "light"}]}]}, {"id": "79549405-ba55-4c7b-9d48-3b15002b5b30", "name": "EnZona", "tags": [], "issuers": ["ENZONA"], "match_rules": [], "icons_collections": [{"id": "d506bfdd-d5ca-4ab4-a4c1-960b445226f4", "name": "EnZona", "icons": [{"id": "4e622fc1-51cf-41b1-999a-5505ee178004", "name": "EnZona", "type": "light"}]}]}, {"id": "797d7590-b2db-4cb2-970a-b709282f9c7a", "name": "TryHackMe", "tags": [], "issuers": [], "match_rules": [{"text": "TryHackMe", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TryHackMe", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7d49fdc0-f3f8-486a-a7ed-8784c7566616", "name": "TryHackMe", "icons": [{"id": "3a6578c1-e96d-44a5-884e-b310a84e99c0", "name": "TryHackMe", "type": "light"}, {"id": "9a52a98c-61fa-4c75-814e-b847e93001b0", "name": "TryHackMe", "type": "dark"}]}]}, {"id": "79a770c9-d58a-4d10-8832-42e548430d1a", "name": "Chatwork", "tags": [], "issuers": [], "match_rules": [{"text": "Chatwork", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Chatwork", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "29798d06-c48d-4343-b844-c22a07e62ce3", "name": "Chatwork", "icons": [{"id": "3c0e89cb-f804-49cb-8009-9b0d8a8a2f1b", "name": "Chatwork", "type": "dark"}, {"id": "d9069a5a-6a5d-4125-8be9-e284f534f268", "name": "Chatwork", "type": "light"}]}]}, {"id": "79b01a50-6fcd-4b2f-8b18-cdfa989226fa", "name": "Capital.com", "tags": [], "issuers": ["Capital"], "match_rules": null, "icons_collections": [{"id": "74e8bf33-83d5-444d-8162-352de6f997b9", "name": "Capital.com", "icons": [{"id": "7d1c8bd3-3e4a-4752-8b9b-7f4394ea08a6", "name": "Capital.com", "type": "light"}]}]}, {"id": "79dd1346-06eb-4204-b8a8-ffc803f78ff7", "name": "APC", "tags": [], "issuers": [], "match_rules": [{"text": "APC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "APC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c46bbfa9-20ff-489c-a99e-cfaf2ba87b4e", "name": "APC", "icons": [{"id": "34049cb1-c970-4fd7-9be4-9d713d0ed2c5", "name": "APC", "type": "light"}]}]}, {"id": "79e9c420-16a7-406d-8a57-b904fea4edaf", "name": "Databox", "tags": [], "issuers": [], "match_rules": [{"text": "Databox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Databox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c498ff0b-4787-4fdd-b036-98e17f660479", "name": "Databox", "icons": [{"id": "4b74bb7b-a507-43c9-bec6-4971972e64e9", "name": "Databox", "type": "light"}]}]}, {"id": "7a3a1048-3b40-4118-bc07-842f1e7e4135", "name": "PayKassa", "tags": [], "issuers": [], "match_rules": [{"text": "PayKassa", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "PayKassa", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7a561902-afc2-4f28-a8d0-52bfa97557e7", "name": "PayKassa", "icons": [{"id": "1d0ad9f7-278e-4263-8638-40c3e5571b30", "name": "PayKassa", "type": "light"}]}]}, {"id": "7a57c8a2-5e90-4e8c-a431-1eee05627eda", "name": "ecobee", "tags": [], "issuers": [], "match_rules": [{"text": "ecobee", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d7ecaa85-888e-4cb0-9988-c1f736776cc1", "name": "ecobee", "icons": [{"id": "5065515e-995f-421c-b3db-da4135a3b8b9", "name": "ecobee", "type": "light"}]}]}, {"id": "7a6118e3-b7f5-4dd7-866c-b11292704df1", "name": "Keeper Security", "tags": [], "issuers": ["Keeper"], "match_rules": null, "icons_collections": [{"id": "e1c6aa97-cf83-4655-b32e-fda3d3594b27", "name": "Keeper Security", "icons": [{"id": "9e4ae53f-ebe6-4e0d-b883-22f374442680", "name": "Keeper Security", "type": "dark"}, {"id": "ceb99510-6253-4a8c-8f86-ecc5883e47c4", "name": "Keeper Security", "type": "light"}]}]}, {"id": "7a7c167a-1eb9-4733-85fa-6c1553ebce94", "name": "npm", "tags": [], "issuers": ["npm"], "match_rules": null, "icons_collections": [{"id": "b5d5a209-73c3-4a9f-ab39-16f8361a2513", "name": "npm", "icons": [{"id": "7c386fb0-e04a-4de7-9b74-5cf6fa479673", "name": "npm", "type": "light"}]}]}, {"id": "7a7ea44c-b7d3-4bfd-86c5-d8d9ae76fa8b", "name": "HashiCorp Vagrant Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "HashiCorp Vagrant Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HashiCorp Vagrant Cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c9da77bd-34c1-4097-92ca-1986f677f9d5", "name": "HashiCorp Vagrant Cloud", "icons": [{"id": "541c4d0e-09a1-41fd-9782-9b26314c46bc", "name": "HashiCorp Vagrant Cloud", "type": "light"}]}]}, {"id": "7a864a3b-356e-4d79-b316-10fa4facbda6", "name": "BnkToTheFuture", "tags": [], "issuers": [], "match_rules": [{"text": "BnkToTheFuture", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BnkToTheFuture", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2681b1e2-9748-4e8d-8367-d471b3f4bbea", "name": "BnkToTheFuture", "icons": [{"id": "9668661a-38e0-4ffc-9cfb-5f07f4e6a6db", "name": "BnkToTheFuture", "type": "light"}]}]}, {"id": "7ab3bfd3-5063-47de-bb99-f1ee4610fb2a", "name": "LogMeIn", "tags": [], "issuers": [], "match_rules": [{"text": "LogMeIn", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LogMeIn", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6bf13151-2e85-4ca0-93f0-c803f4e09e02", "name": "LogMeIn", "icons": [{"id": "20c0dfb4-da74-450b-b07a-bb15c5a6dfb1", "name": "LogMeIn", "type": "light"}]}]}, {"id": "7afec234-26e4-43d6-97bc-ccb2024c180c", "name": "University of Colorado Boulder", "tags": [], "issuers": [], "match_rules": [{"text": "University of Colorado Boulder", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Colorado Boulder", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "60eda106-9a16-4e73-be93-54e83c878983", "name": "University of Colorado Boulder", "icons": [{"id": "e4e5a2b3-4454-462e-b72a-128ac6ba37ae", "name": "University of Colorado Boulder", "type": "light"}]}]}, {"id": "7b198b67-f1c5-495d-b294-5d28d3abf0e8", "name": "Kick", "tags": [], "issuers": ["kick"], "match_rules": null, "icons_collections": [{"id": "e78fb201-6932-4e6d-a4e5-01a42005822d", "name": "Kick", "icons": [{"id": "1504d34f-4232-43e1-ae39-774d740cae37", "name": "Kick", "type": "light"}]}]}, {"id": "7b5ae065-2d9e-47e3-8057-a4753de9c264", "name": "Airwallex", "tags": [], "issuers": ["Airwallex"], "match_rules": null, "icons_collections": [{"id": "e9d839d4-5912-48f4-9d10-55da53dae862", "name": "Airwallex", "icons": [{"id": "3e0af4e0-7050-4ba6-bafa-e5ec20a49b81", "name": "Airwallex", "type": "light"}]}]}, {"id": "7b9eb03e-0ed0-4be9-852d-f559abc84cc5", "name": "Lark Suite", "tags": [], "issuers": [], "match_rules": [{"text": "Lark Suite", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Lark Suite", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Lark(\\+|\\s|-|_)Suite", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Lark(\\+|\\s|-|_)Suite", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "828ac4d4-fc9a-476f-9b93-1e4cd7bcfee5", "name": "Lark Suite", "icons": [{"id": "9c2672e0-c40d-47ab-8cd0-8ecd0542a749", "name": "Lark Suite", "type": "light"}]}]}, {"id": "7bd710ea-f376-48d8-ad1f-a0c02ecc3037", "name": "NeoGAF", "tags": [], "issuers": ["NeoGAF"], "match_rules": null, "icons_collections": [{"id": "50b56493-7d97-48bf-ae85-cafb69265fe5", "name": "NeoGAF", "icons": [{"id": "eeb15763-0cdb-4a15-8c01-2c5daaa71b2f", "name": "NeoGAF", "type": "light"}, {"id": "f55d6295-9186-4737-9efb-5de6242f65c7", "name": "NeoGAF", "type": "dark"}]}]}, {"id": "7c140d3e-d5c6-4b02-bf3f-b2361a9e5aeb", "name": "Codebase", "tags": ["atechmedia"], "issuers": [], "match_rules": [{"text": "Codebase", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Codebase", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "atechmedia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "36041399-3c58-4c4f-842f-9d65f2d25187", "name": "Codebase", "icons": [{"id": "40a43fb3-f6de-4153-a1c7-16b2c1345b3f", "name": "Codebase", "type": "light"}, {"id": "44557816-0187-413d-9ab4-a996d20e649b", "name": "Codebase", "type": "dark"}]}]}, {"id": "7c373102-9d13-489e-9baa-325903b550e5", "name": "NiceHash Buying", "tags": [], "issuers": ["NiceHash - buying"], "match_rules": [], "icons_collections": [{"id": "c8019718-56b2-406f-bf21-2addda6b21fd", "name": "NiceHash", "icons": [{"id": "cb0edba6-9027-49cc-b99d-1b31041e5073", "name": "NiceHash Buying", "type": "light"}]}]}, {"id": "7c839f74-7df8-4ea8-9e45-e9ad8ac37197", "name": "Jagex", "tags": [], "issuers": ["Jagex"], "match_rules": [], "icons_collections": [{"id": "bba6e836-305e-4ab5-b02e-40e8587a10d5", "name": "Jagex", "icons": [{"id": "61a569da-5b9c-439b-a439-ff06a4c2f24a", "name": "Jagex", "type": "light"}]}]}, {"id": "7c9f6330-0a27-4367-8607-52d39b582559", "name": "RealVNC", "tags": [], "issuers": [], "match_rules": [{"text": "RealVNC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RealVNC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "be585f09-751c-4874-a428-43cc0279c7f0", "name": "RealVNC", "icons": [{"id": "915b5cc0-f98f-440c-a6a5-039351640572", "name": "RealVNC", "type": "light"}]}]}, {"id": "7cde0945-9fea-4acc-9a35-58086a5379cc", "name": "SocketLabs", "tags": [], "issuers": [], "match_rules": [{"text": "SocketLabs", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SocketLabs", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cf7bdab2-c559-4eb3-8c1b-6d4fa3f68623", "name": "SocketLabs", "icons": [{"id": "cc712b8c-d35e-4f51-8052-ea382faf73ab", "name": "SocketLabs", "type": "light"}]}]}, {"id": "7cea4661-c2da-4a71-aad2-9a3a0f236455", "name": "SentinelOne", "tags": [], "issuers": ["SentinelOne"], "match_rules": null, "icons_collections": [{"id": "365045b9-7d72-4dbc-a6b0-95505891e195", "name": "SentinelOne", "icons": [{"id": "021bf62b-2a69-404c-839c-389e0b5539fd", "name": "SentinelOne", "type": "light"}]}]}, {"id": "7cf2db15-6995-4629-a586-05cf8022c5e4", "name": "Gatehub", "tags": [], "issuers": [], "match_rules": [{"text": "Gatehub", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Gatehub", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b8e9d5df-6831-44b5-92b4-154ff2a66538", "name": "Gatehub", "icons": [{"id": "d0707a53-cabc-48a7-b252-add846231c2d", "name": "Gatehub", "type": "light"}]}]}, {"id": "7d012425-7019-4320-90a5-38963e4a022e", "name": "Brave", "tags": [], "issuers": ["Brave+Rewards", "Brave Rewards", "Brave Community", "Brave+Community"], "match_rules": [], "icons_collections": [{"id": "e4e7da2f-3d8b-4686-8c2c-fd94a23864ad", "name": "Brave", "icons": [{"id": "c0d07326-5451-4ed1-8897-6b077e1bbfc1", "name": "Brave", "type": "light"}]}]}, {"id": "7d0557e5-9456-441f-ba61-32d903b6db10", "name": "Control D", "tags": [], "issuers": [" ControlD"], "match_rules": [], "icons_collections": [{"id": "e6f3c3a8-b42a-45c0-9ec4-c7af77b6509b", "name": "Control D", "icons": [{"id": "1f69f5b2-11c5-47e3-9910-78c3a2da794f", "name": "Control D", "type": "light"}, {"id": "4332ab89-25d6-4efb-be0b-cf70d6c3bc19", "name": "Control D", "type": "dark"}]}]}, {"id": "7d186ccb-3417-4849-bfab-763d8a89aa10", "name": "Bill", "tags": [], "issuers": [], "match_rules": [{"text": "Bill", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bill", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "04c5dd16-8c1d-4f7a-96dc-a83fb398f7d3", "name": "Bill", "icons": [{"id": "7ab34c51-56e3-4ac6-a477-e48ffd2ed495", "name": "Bill", "type": "light"}]}]}, {"id": "7d63ffe6-7804-435f-88fc-0adb0e159d06", "name": "Sisense Cloud Data Teams", "tags": [], "issuers": [], "match_rules": [{"text": "Sisense", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sisense", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "PeriscopeData", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e8ab1466-8aa3-46a2-8f20-ab2c32ea3c3a", "name": "Sisense Cloud Data Teams", "icons": [{"id": "4153cae5-bf0e-49e2-906d-842d41d067f5", "name": "Sisense Cloud Data Teams", "type": "light"}, {"id": "62faa412-f3c9-4710-8a8b-f7b1e8dec6a4", "name": "Sisense", "type": "dark"}]}]}, {"id": "7d64fc42-384f-44b8-b4cb-a017aff60ae2", "name": "Cronometer", "tags": [], "issuers": [], "match_rules": [{"text": "Cronometer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cronometer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6debb665-618e-4aca-8b2a-8de9689c8556", "name": "Cronometer", "icons": [{"id": "ebc79151-59fe-468b-b689-c9dac30658a0", "name": "Cronometer", "type": "light"}]}]}, {"id": "7d6c3db8-9ca5-4af5-99b5-1647ed525020", "name": "HostUS", "tags": [], "issuers": [], "match_rules": [{"text": "HostUS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HostUS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "360d761b-6082-4c15-9370-822183a0d228", "name": "HostUS", "icons": [{"id": "0963508d-8cb0-4d58-abb9-93d8b8c7fc49", "name": "HostUS", "type": "light"}, {"id": "11f24086-3812-48d9-b429-2cc783af7fc0", "name": "HostUS", "type": "dark"}]}]}, {"id": "7dc0cb8a-5b3d-43b7-8100-fc402521260c", "name": "Baremetrics", "tags": [], "issuers": [], "match_rules": [{"text": "Baremetrics", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Baremetrics", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "488b76e6-fe7a-4819-8341-94b3afa0ea35", "name": "Baremetrics", "icons": [{"id": "fbf9004b-b4a8-43ed-b0a9-9dc5b9127f46", "name": "Baremetrics", "type": "light"}]}]}, {"id": "7dd75bc6-36a8-4abb-b4cc-ea0c565039ef", "name": "DMARC Analyzer", "tags": [], "issuers": [], "match_rules": [{"text": "DMARC Analyzer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DMARC Analyzer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "70a19f89-28f6-4a5b-b10c-91639e7be36f", "name": "DMARC Analyzer", "icons": [{"id": "50aba6c7-d2c0-426a-968e-292c4280f856", "name": "DMARC Analyzer", "type": "light"}]}]}, {"id": "7dfa2136-3dcb-4b38-9038-7e7a39612fc3", "name": "Sync", "tags": [], "issuers": ["Sync"], "match_rules": null, "icons_collections": [{"id": "3aa1b5aa-0f1d-41a1-8ce2-a3e76741ebb8", "name": "Sync", "icons": [{"id": "348d6ba7-61e5-4247-a0d3-1a471e65fea2", "name": "Sync", "type": "light"}, {"id": "b6e826a6-807c-4259-b788-44fbd238e347", "name": "Sync", "type": "dark"}]}]}, {"id": "7e3248ab-9cc7-4213-8e46-db814bcd98b7", "name": "Squarespace", "tags": [], "issuers": ["Squarespace"], "match_rules": null, "icons_collections": [{"id": "614e0e97-27e3-4db2-9f6b-34d6027fa9d2", "name": "Squarespace", "icons": [{"id": "181d343a-a7fc-49f1-a34c-9c9c91052b04", "name": "Squarespace", "type": "light"}, {"id": "f29a4de6-572b-400b-acb2-76252c497189", "name": "Squarespace", "type": "dark"}]}]}, {"id": "7e827a70-d3ce-4f09-9ce0-0b5dc5df12de", "name": "Ravelin", "tags": [], "issuers": [], "match_rules": [{"text": "Ravelin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Ravelin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "93d26a7d-efa2-477d-a995-7a78702b2836", "name": "Ravelin", "icons": [{"id": "c7dc845d-6bc1-417a-8837-b4c80ac260c8", "name": "Ravelin", "type": "light"}]}]}, {"id": "7e92bf90-bc72-4554-a2f4-149f3bb68d84", "name": "Visual Studio Codespaces", "tags": [], "issuers": [], "match_rules": [{"text": "Visual Studio Codespaces", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Visual Studio Codespaces", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "481fc356-0c8d-4f57-ac44-3ec23338a726", "name": "Visual Studio Codespaces", "icons": [{"id": "4408364f-21ef-4554-9b2e-3504be5acd13", "name": "Visual Studio Codespaces", "type": "light"}]}]}, {"id": "7ea96de6-94c4-47ab-b9e0-6c96975104ca", "name": "Talkdesk", "tags": [], "issuers": [], "match_rules": [{"text": "Talkdesk", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Talkdesk", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dc95d230-017f-4f27-af4d-9916cc0c6eba", "name": "Talkdesk", "icons": [{"id": "edee15bf-fe77-4271-9e6a-ebfc6929ca08", "name": "Talkdesk", "type": "light"}]}]}, {"id": "7eaa1da0-c329-42e7-af84-47a4dccc5745", "name": "LawPay", "tags": [], "issuers": ["LawPay"], "match_rules": null, "icons_collections": [{"id": "78ae0fdf-50ab-4358-90c7-ca7174df3f9c", "name": "LawPay", "icons": [{"id": "220fb461-f652-4310-b8d3-2d480c81314d", "name": "LawPay", "type": "light"}]}]}, {"id": "7ec6284a-152f-4ac6-a702-95a21bfb7e02", "name": "IFTTT", "tags": [], "issuers": ["IFTTT"], "match_rules": [], "icons_collections": [{"id": "c5879187-e23d-4700-93f3-a6f868acabac", "name": "IFTTT", "icons": [{"id": "9bf53643-6851-4ff7-8813-42e13ffd310a", "name": "IFTTT", "type": "dark"}, {"id": "a474e176-b524-4f47-9136-8d5bbe082360", "name": "IFTTT", "type": "light"}]}]}, {"id": "7ecdd454-63e2-4bd1-88be-84c968d6042a", "name": "Morgan Stanley", "tags": [], "issuers": [], "match_rules": [{"text": "Morgan Stanley", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Morgan Stanley", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "51790ef4-c45a-44de-b604-babac395b878", "name": "Morgan Stanley", "icons": [{"id": "15b7ff37-5678-4ce9-b62d-0465c78c89f2", "name": "Morgan Stanley", "type": "light"}, {"id": "de2f99f1-c9eb-48ab-b6dc-8ecdacbab49f", "name": "Morgan Stanley", "type": "dark"}]}]}, {"id": "7edd95cf-a6c3-4a4e-8d9b-90c94de52e52", "name": "Codeberg", "tags": [], "issuers": [], "match_rules": [{"text": "Codeberg", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Codeberg", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5b504195-1fab-40ad-9892-3b90a4d94cdd", "name": "Codeberg", "icons": [{"id": "8657ab51-a796-4bd1-91b9-ade6d53c4353", "name": "Codeberg", "type": "light"}]}]}, {"id": "7f0cfb06-f9c4-4618-926c-924071e92d73", "name": "Buda", "tags": [], "issuers": [], "match_rules": [{"text": "Buda", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Buda", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8cfa9803-beaa-4adc-a75a-e676f8219adb", "name": "Buda", "icons": [{"id": "ac1264c5-a44d-4490-8abd-4f06f7e42c78", "name": "Buda", "type": "light"}]}]}, {"id": "7f1b59e5-fd1d-4e2f-a6c3-c38c44c53c6e", "name": "Digital Ocean", "tags": [], "issuers": ["DigitalOcean"], "match_rules": [], "icons_collections": [{"id": "bedb3c09-c11e-4a34-9c30-1855a5b546b8", "name": "Digital Ocean", "icons": [{"id": "d118a635-ecff-4245-8efa-a16ed0e2968c", "name": "Digital Ocean", "type": "light"}]}]}, {"id": "7f5aa6ce-925c-460f-baea-93e027f77fe4", "name": "Coinberry", "tags": [], "issuers": [], "match_rules": [{"text": "Coinberry", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinberry", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "210b98a2-2efc-4562-986c-b50a7cc7c29a", "name": "Coinberry", "icons": [{"id": "90ab9d93-86bc-44eb-874f-25d701505270", "name": "Coinberry", "type": "light"}]}]}, {"id": "7fb255db-eb65-44cd-9ce3-5e62ea0ccbb4", "name": "Cloud Panel", "tags": [], "issuers": ["CloudPanel"], "match_rules": null, "icons_collections": [{"id": "ce893d40-34ce-444b-afb9-bcf51ef8ed25", "name": "Cloud Panel", "icons": [{"id": "e872de3c-ba73-4838-86a3-c018d6019829", "name": "Cloud Panel", "type": "light"}]}]}, {"id": "7fc06c13-d09b-40da-a740-099cc0743da8", "name": "Help Scout", "tags": [], "issuers": ["Help Scout"], "match_rules": null, "icons_collections": [{"id": "dbedb8f2-02a7-48c5-a41f-a009b989430c", "name": "Help Scout", "icons": [{"id": "0f8ca18e-d6d4-4547-8e5d-2c024fd1bf90", "name": "Help Scout", "type": "light"}]}]}, {"id": "7fed7497-7f8c-47b3-80a7-bb11ee7297f3", "name": "Dyn", "tags": [], "issuers": [], "match_rules": [{"text": "Dyn", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Dyn", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "00f64f47-9c10-4646-ae64-1199abac1727", "name": "Dyn", "icons": [{"id": "85acdb86-d335-4d68-911d-85b685a8e9dd", "name": "Dyn", "type": "light"}]}]}, {"id": "8003377c-5f86-441f-9ca7-0865d55a4efe", "name": "LIHKG", "tags": [], "issuers": [], "match_rules": [{"text": "LIHKG", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LIHKG", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "acb4f3cf-ded5-4cd4-a351-e233e7f938ba", "name": "LIHKG", "icons": [{"id": "0f892a23-6086-4f25-9c46-cfe94d6d6376", "name": "LIHKG", "type": "light"}]}]}, {"id": "802b7e13-9f6c-4546-b188-38b7ade15b67", "name": "Unstoppable Domains", "tags": [], "issuers": ["unstoppabledomains.com"], "match_rules": null, "icons_collections": [{"id": "07a242e2-8f53-4a02-86d2-bd3d1589f0bc", "name": "Unstoppable Domains", "icons": [{"id": "8cc53f9a-5965-4cd3-a466-816474270fb0", "name": "Unstoppable Domains", "type": "light"}]}]}, {"id": "80f023af-b7e2-4395-a700-769bf968dcf6", "name": "JetBrains", "tags": [], "issuers": ["JetBrains+Account", "JetBrains Account"], "match_rules": [], "icons_collections": [{"id": "2143b701-156b-4d92-919f-00fa12423913", "name": "JetBrains", "icons": [{"id": "18848da5-dfa6-4b4b-8a3b-d5dc3f7582b7", "name": "JetBrains", "type": "light"}]}]}, {"id": "80ffdc39-f0ba-40a1-826a-0afb5084f8a0", "name": "Ubiquiti", "tags": [], "issuers": [], "match_rules": [{"text": "Ubiquiti", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d4933ce4-1942-416a-aea0-97e802b741cc", "name": "Ubiquiti", "icons": [{"id": "0b2c56d8-6e97-4725-bd03-0de05d9fa00f", "name": "Ubiquiti", "type": "light"}]}]}, {"id": "81243ec1-475c-4d34-960c-18ab2ea3f112", "name": "CoinTracker", "tags": [], "issuers": ["CoinTracker"], "match_rules": null, "icons_collections": [{"id": "16a18da2-f83a-4af4-989d-bef141971c43", "name": "CoinTracker", "icons": [{"id": "35819712-7fae-4426-8fe9-d718da5a11e2", "name": "CoinTracker", "type": "light"}]}]}, {"id": "81893f05-1e77-4928-961d-7d14886c43df", "name": "Spotify", "tags": [], "issuers": ["Spotify"], "match_rules": null, "icons_collections": [{"id": "d3a469ca-8067-4e22-a044-96f15a12b5c1", "name": "Spotify", "icons": [{"id": "8bd9332b-3931-44c4-9739-80655c12a307", "name": "Spotify", "type": "light"}]}]}, {"id": "81ca01bd-b056-4693-a02f-c013e3b2a3fa", "name": "Perimeter 81", "tags": [], "issuers": [], "match_rules": [{"text": "Perimeter 81", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Perimeter 81", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7065a988-32ff-4ef1-8f0e-3753ced7b739", "name": "Perimeter 81", "icons": [{"id": "925337f6-e55e-404c-8eba-e09089275fe2", "name": "Perimeter 81", "type": "light"}]}]}, {"id": "81d7ca73-6785-49ec-aa3c-e2a6335a3e62", "name": "Bitstamp", "tags": [], "issuers": [], "match_rules": [{"text": "Bitstamp", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitstamp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "04052a42-41de-4c1a-95c1-d4ec0867a849", "name": "Bitstamp", "icons": [{"id": "c9483b0c-3d30-47e3-935f-8014e41797a7", "name": "Bitstamp", "type": "dark"}, {"id": "d3585c19-57fc-4db5-b38e-e14b7662c8f0", "name": "Bitstamp", "type": "light"}]}]}, {"id": "8238cd36-074e-4dae-8fc5-c808a6c5f7b2", "name": "Rewind", "tags": [], "issuers": [], "match_rules": [{"text": "Rewind", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rewind", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d5fb7ff7-df36-419a-bf2d-3735594ae27a", "name": "Rewind", "icons": [{"id": "cfe77fa6-c42f-42ae-bae2-b7fb8c349afa", "name": "Rewind", "type": "light"}]}]}, {"id": "82577edc-f9b1-4b6f-9fb8-c242a35e2408", "name": "HS Fulda", "tags": ["Hochschule", "fulda"], "issuers": ["horstl"], "match_rules": null, "icons_collections": [{"id": "ec2df1ec-7b6e-4bb7-a220-37dcca841030", "name": "HS Fulda", "icons": [{"id": "ad5644f5-fae6-4bc9-83b5-542dda9f8f2d", "name": "HS Fulda", "type": "light"}]}]}, {"id": "8294b3ae-906d-48bb-8755-17a1b86cd306", "name": "Refersion", "tags": [], "issuers": [], "match_rules": [{"text": "Refersion", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Refersion", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "83088ecb-4abc-4f2f-a57f-189b43654925", "name": "Refersion", "icons": [{"id": "800ce669-a9f2-48cf-86e9-91d4e1516fbd", "name": "Refersion", "type": "light"}]}]}, {"id": "82adeede-e575-4c1b-a926-39fb6a00d1f2", "name": "RamNode", "tags": [], "issuers": [], "match_rules": [{"text": "RamNode", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RamNode", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "28ebd542-dd92-4ad7-92f6-c25242baa90b", "name": "RamNode", "icons": [{"id": "f856abb4-57ea-4525-b21d-29e4ced7ef53", "name": "RamNode", "type": "light"}]}]}, {"id": "82bb2fa6-a87a-4894-9717-b1d521dbd6b1", "name": "MB Connect Line", "tags": [], "issuers": [], "match_rules": [{"text": "MB Connect Line", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "MB Connect Line", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c8208957-94df-4511-8f53-4500ec1336ed", "name": "MB Connect Line", "icons": [{"id": "51d796c1-b94d-4631-a89c-7b40e939030c", "name": "MB Connect Line", "type": "light"}]}]}, {"id": "82c10485-6384-4ef9-9d41-f19fab950b6b", "name": "Rocket Beans TV", "tags": [], "issuers": [], "match_rules": [{"text": "Rocket Beans TV", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rocket Beans TV", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7a3b7a57-3ef8-46a0-b8ba-70bc43e14329", "name": "Rocket Beans TV", "icons": [{"id": "05d8f0a8-5e3e-452b-baf5-65365547ec21", "name": "Rocket Beans TV", "type": "light"}]}]}, {"id": "82d90864-a1f7-4cb1-b258-e610ebfeb13f", "name": "SpaceHey", "tags": [], "issuers": ["SpaceHey"], "match_rules": null, "icons_collections": [{"id": "98cec66b-0047-4a4f-b948-dfaa94005891", "name": "SpaceHey", "icons": [{"id": "49406425-ac03-435f-a742-249114653c37", "name": "SpaceHey", "type": "light"}, {"id": "545b2113-4baf-454f-b310-802c00a95c70", "name": "SpaceHey", "type": "dark"}]}]}, {"id": "82dffa18-98ab-469b-a585-0f5ed9990b9b", "name": "NVIDIA", "tags": ["GeForce"], "issuers": ["NVIDIA"], "match_rules": [], "icons_collections": [{"id": "8b295bb2-91cc-4f19-b173-16df95e228c3", "name": "NVIDIA", "icons": [{"id": "0bbbed37-d57a-4498-9bfd-4ee474921ba0", "name": "NVIDIA", "type": "light"}]}]}, {"id": "82fd1bfe-64cf-446d-acea-5876d821c5d0", "name": "Open Collective", "tags": [], "issuers": ["Open Collective"], "match_rules": null, "icons_collections": [{"id": "15a8549b-2ac7-497e-a6ae-11378ae18119", "name": "Open Collective", "icons": [{"id": "e8a2d6ef-e116-4347-9491-24df09531603", "name": "Open Collective", "type": "dark"}, {"id": "ec042aca-7646-43dc-960b-b29580d51192", "name": "Open Collective", "type": "light"}]}]}, {"id": "830020a7-2513-488c-8a7c-7e20aa9578d2", "name": "Alterdice", "tags": [], "issuers": [], "match_rules": [{"text": "Alterdice", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Alterdice", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cd165431-53b8-4936-b8ea-cbd8fa1e8c96", "name": "Alterdice", "icons": [{"id": "8a0a282e-aef4-4c98-a7a2-5bb5dc05e80b", "name": "Alterdice", "type": "light"}]}]}, {"id": "8393c2bd-d496-4432-890d-a7477f176e08", "name": "CoinRemitter", "tags": [], "issuers": [], "match_rules": [{"text": "CoinRemitter", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinRemitter", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9e1ed47-e280-4ba5-a00c-4d017a124d78", "name": "CoinRemitter", "icons": [{"id": "67213700-6251-4459-8154-dfa8174ca1af", "name": "CoinRemitter", "type": "light"}]}]}, {"id": "83a6df63-b742-4675-afda-9d230c192e10", "name": "Frontify", "tags": [], "issuers": [], "match_rules": [{"text": "Frontify", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Frontify", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d5a42783-5007-453d-b27c-18bede240cea", "name": "Frontify", "icons": [{"id": "7a96c6a8-6e78-46c3-a100-53ffccb78606", "name": "Frontify", "type": "light"}, {"id": "f0659a7c-09fd-4bad-9a7e-355e4faee0d5", "name": "Frontify", "type": "dark"}]}]}, {"id": "840d21e0-d20d-4067-b6c7-2b96aae85579", "name": "Docusign", "tags": [], "issuers": [], "match_rules": [{"text": "Docusign", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Docusign", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6c5884c0-7c72-4c2b-896d-3481cff57cc8", "name": "Docusign", "icons": [{"id": "0ef7b215-4b57-4ab7-b39a-64b1765fba51", "name": "Docusign", "type": "light"}]}]}, {"id": "84662035-1e65-4cde-9741-efb1e83a5ef2", "name": "Unleashed Inventory", "tags": [], "issuers": [], "match_rules": [{"text": "Unleashed Inventory", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Unleashed Inventory", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "305b1e9c-2fd3-4b84-b302-8c1bec2138a9", "name": "Unleashed Inventory", "icons": [{"id": "cc3da4f5-a306-4441-a63a-3246f746ad26", "name": "Unleashed Inventory", "type": "light"}]}]}, {"id": "84edaeaf-9168-45ff-96d9-003228d3dd8c", "name": "Formstack", "tags": [], "issuers": [], "match_rules": [{"text": "Formstack", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Formstack", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "785c2b05-b748-468d-a125-241260f12ac8", "name": "Formstack", "icons": [{"id": "6bf58290-7e80-4448-8671-1ad7fb975a38", "name": "Formstack", "type": "light"}]}]}, {"id": "84f63808-cfb8-4ae5-a830-e6f70ab02dae", "name": "EuroDNS", "tags": [], "issuers": [], "match_rules": [{"text": "EuroDNS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "EuroDNS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "98fefb13-beb0-4e1c-b2d3-e6acc0ec5aec", "name": "EuroDNS", "icons": [{"id": "8f4a791e-e87a-4cd0-bcbb-a2f6f6b830ec", "name": "EuroDNS", "type": "light"}]}]}, {"id": "85296295-6a06-4e0c-bd60-937c805a6c1f", "name": "HashiCorp Cloud Platform", "tags": [], "issuers": [], "match_rules": [{"text": "hashicorp-cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "hashicorp-cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dc569788-3def-4fbc-8238-f5bc61084a5b", "name": "HashiCorp Cloud Platform", "icons": [{"id": "79d2282f-3d34-4733-ac7c-a40d01151343", "name": "HashiCorp Cloud Platform", "type": "light"}, {"id": "da447d71-ac7a-4647-b1f9-4e1b28f3b3db", "name": "HashiCorp", "type": "dark"}]}]}, {"id": "8545bf3b-1bbe-4ecb-a623-cfdfe5f3fc38", "name": "Firefox", "tags": [], "issuers": ["Firefox"], "match_rules": [], "icons_collections": [{"id": "abe5ddb6-80c8-4b31-8fbb-345e0d81160b", "name": "Firefox", "icons": [{"id": "fedc897a-14e8-4a8d-9b33-d31c67d40d3c", "name": "Firefox", "type": "light"}]}]}, {"id": "85ad45be-da07-4b6d-b373-8acbe7148c37", "name": "Buffer", "tags": [], "issuers": ["Buffer"], "match_rules": [], "icons_collections": [{"id": "2c9ee610-c4d6-4457-8834-f7c538a7f163", "name": "Buffer", "icons": [{"id": "8488c7e4-328f-4efa-84d5-a454dc9faf48", "name": "Buffer", "type": "light"}, {"id": "e5d7b169-31bd-451d-b7b5-78d8822e2508", "name": "Buffer", "type": "dark"}]}]}, {"id": "86006813-ee18-4ae6-a87b-5347820b0519", "name": "SeaTable", "tags": [], "issuers": ["seatable.io"], "match_rules": null, "icons_collections": [{"id": "028279c4-92e4-47d1-ac5d-66e1618bd244", "name": "SeaTable", "icons": [{"id": "cc398ee5-2178-42e6-9e72-957d80733a9e", "name": "SeaTable", "type": "light"}]}]}, {"id": "86865881-b1cc-49af-bed1-cbd05d9fadde", "name": "Binary Fortress Software", "tags": [], "issuers": [], "match_rules": [{"text": "Binary Fortress Software", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Binary Fortress Software", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Binary(\\+|\\s|-|_)Fortress(\\+|\\s|-|_)Software", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Binary(\\+|\\s|-|_)Fortress(\\+|\\s|-|_)Software", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "86633fb6-7758-4a7d-9b84-4e9879297227", "name": "Binary Fortress Software", "icons": [{"id": "e6448330-d612-47c3-b4e6-bb16e73abf64", "name": "Binary Fortress Software", "type": "light"}]}]}, {"id": "868894d6-32e4-45ec-9c9e-10d8806c76f3", "name": "Veem", "tags": [], "issuers": [], "match_rules": [{"text": "Veem", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Veem", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2093372c-4f33-4cb3-8133-b8f1ca9e098e", "name": "Veem", "icons": [{"id": "f92bcf0a-829e-4aff-8ded-0a9d486818ce", "name": "Veem", "type": "light"}]}]}, {"id": "868f0d51-8916-4807-acc0-8d4ee45f7db1", "name": "Hostiso", "tags": [], "issuers": [], "match_rules": [{"text": "Hostiso", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hostiso", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fbd1485b-ca8c-41e7-92e1-7ef469b99e93", "name": "Hostiso", "icons": [{"id": "3729271e-0304-431f-aef5-839609176f59", "name": "Hostiso", "type": "light"}]}]}, {"id": "8698b2b9-a7e0-4bc7-8ffe-ad28ee0f7f08", "name": "IBM Cloud", "tags": [], "issuers": [], "match_rules": [{"text": "IBM Cloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IBM Cloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7d447f66-7e02-428b-9e36-68f7c958580c", "name": "IBM Cloud", "icons": [{"id": "4d2f5e46-a77d-43b2-9781-bb700b0b6a48", "name": "IBM Cloud", "type": "light"}, {"id": "d5cd7480-5b93-4379-92f9-3d4ba2e9753b", "name": "IBM Cloud", "type": "dark"}]}]}, {"id": "87243aa3-1fa8-4263-b6b1-dc4659bb5aef", "name": "GM", "tags": [], "issuers": ["General Motors Security Team"], "match_rules": null, "icons_collections": [{"id": "a2b78d57-46c7-49f9-9d28-0f3c58e35be5", "name": "GM", "icons": [{"id": "bed8c104-379f-4eda-9908-985557afff4e", "name": "GM", "type": "light"}, {"id": "f9f105ad-4fef-418d-940f-dd21d2116db0", "name": "GM", "type": "dark"}]}]}, {"id": "873024ad-7ff9-4c17-b359-d741b8e6bbd5", "name": "Ripe NCC", "tags": [], "issuers": [], "match_rules": [{"text": "Ripe NCC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Ripe NCC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0dd85aeb-012f-4d86-9ec5-80789ef60055", "name": "Ripe NCC", "icons": [{"id": "1a9ed1cd-0cfd-48b1-b01f-5147b789f6c0", "name": "Ripe NCC", "type": "light"}, {"id": "3090fc32-b6bb-4a48-861f-62ad313f459c", "name": "Ripe NCC", "type": "dark"}]}]}, {"id": "87628e28-8d71-4d26-9a81-84da98f3c128", "name": "Wise", "tags": [], "issuers": ["Wise"], "match_rules": null, "icons_collections": [{"id": "b489e126-7964-4d8f-b3b9-8fc5e740710d", "name": "Wise", "icons": [{"id": "abfea0a1-749f-484c-88b8-f67470a08e5f", "name": "Wise", "type": "dark"}, {"id": "fddee495-a28d-47dc-9499-158ba1909d0e", "name": "Wise", "type": "light"}]}]}, {"id": "87b50366-eebf-4f21-a268-1a1758e33c13", "name": "StubHub", "tags": [], "issuers": [], "match_rules": [{"text": "StubHub", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StubHub", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3156e052-2c4a-409f-969f-3b2a0a8dea23", "name": "StubHub", "icons": [{"id": "9628ce88-d83d-4728-8fe3-596b599852cf", "name": "StubHub", "type": "light"}]}]}, {"id": "881e237f-37a2-41e7-87ef-9c21684618f3", "name": "AutoTask", "tags": [], "issuers": [], "match_rules": [{"text": "AutoTask", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AutoTask", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7d8c75ff-a63e-49fd-b225-e3290549f4ed", "name": "AutoTask", "icons": [{"id": "aa895fdb-16d5-43eb-b633-5fa12a98afe9", "name": "AutoTask", "type": "light"}]}]}, {"id": "882c9046-b11f-4f4f-9f66-7095202a03a7", "name": "RoboForm", "tags": [], "issuers": ["RoboForm"], "match_rules": [], "icons_collections": [{"id": "b541b6bb-1921-418b-91c8-ad911062b736", "name": "RoboForm", "icons": [{"id": "0677ef34-0387-4229-9e40-80f69d497476", "name": "RoboForm", "type": "light"}]}]}, {"id": "882c9d00-fbd8-48b7-930d-41f503966a4f", "name": "Zimbra", "tags": [], "issuers": [], "match_rules": [{"text": "Zimbra", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Zimbra", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "884cf569-fb14-4c47-828c-2f9f88377cb7", "name": "Zimbra", "icons": [{"id": "023f72a8-c86b-412c-a362-c460ab9e9bb0", "name": "Zimbra", "type": "light"}]}]}, {"id": "886b5652-ad19-4f60-ae39-b5fa1a540794", "name": "UW Credit Union", "tags": [], "issuers": [], "match_rules": [{"text": "UW Credit Union", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "UW Credit Union", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "732e06ef-1bc9-48dc-9cd7-4f0ee9b0d1d4", "name": "UW Credit Union", "icons": [{"id": "f6525b68-2767-4958-b322-3a50066586ea", "name": "UW Credit Union", "type": "light"}]}]}, {"id": "889bb777-71ee-45d8-9c95-4253eee6bb89", "name": "BKEX", "tags": [], "issuers": [], "match_rules": [{"text": "BKEX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BKEX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c167c7d1-eaa7-4578-ab63-1541330a3137", "name": "BKEX", "icons": [{"id": "ab12aadb-0150-4b18-83a8-07788b1fb0cf", "name": "BKEX", "type": "light"}]}]}, {"id": "88a53cdc-9701-4441-9afa-03e1e23cc9ef", "name": "Plutus", "tags": [], "issuers": [], "match_rules": [{"text": "Plutus", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Plutus", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e4241dff-21a0-4990-9561-174db4bab356", "name": "Plutus", "icons": [{"id": "a502fe85-effc-48b1-833b-019e36557cb5", "name": "Plutus", "type": "light"}]}]}, {"id": "8952184d-8267-4bba-9643-8519de01b3da", "name": "When I Work", "tags": [], "issuers": [], "match_rules": [{"text": "When I Work", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "When I Work", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "58535f61-5b07-44e5-b2c6-62c45d6b484b", "name": "When I Work", "icons": [{"id": "d520ddec-46d3-4666-a950-525464dce970", "name": "When I Work", "type": "light"}]}]}, {"id": "89706ecc-af41-42ab-9d05-98ce63ef4184", "name": "Bohemia Interactive", "tags": [], "issuers": [], "match_rules": [{"text": "Bohemia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bohemia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5b7648e2-c203-4054-ac9f-2b2bec0590b1", "name": "Bohemia Interactive", "icons": [{"id": "2c134154-b613-4476-a8f5-a752b7b171b4", "name": "Bohemia Interactive", "type": "light"}, {"id": "aa08d0b4-8ef5-469a-a6dd-946c6de72388", "name": "Bohemia Interactive", "type": "dark"}]}]}, {"id": "897a4125-1656-4e2f-a6ec-90294aa7d59e", "name": "Fasthosts", "tags": [], "issuers": [], "match_rules": [{"text": "Fasthosts", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fasthosts", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f3e7bdee-dbd0-40e8-a65a-789f3962d417", "name": "Fasthosts", "icons": [{"id": "1ef4025c-1ca3-4c62-b2b4-8548384c0141", "name": "Fasthosts", "type": "light"}, {"id": "8dc4b998-bc71-4885-b802-8a56ad2ba5d6", "name": "Fasthosts", "type": "dark"}]}]}, {"id": "89d4da87-f110-4a4f-862a-051032180536", "name": "Tesla", "tags": [], "issuers": ["Tesla"], "match_rules": [], "icons_collections": [{"id": "7221bad0-f0de-431f-9c16-81acc5049d6d", "name": "Tesla", "icons": [{"id": "07713bb8-dba0-4c94-acd8-51870ab8a14e", "name": "Tesla", "type": "light"}]}]}, {"id": "89e6ea49-a9ad-46e8-85a3-391b5829109d", "name": "Hostens", "tags": [], "issuers": [], "match_rules": [{"text": "Hostens", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hostens", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0f84823e-e705-427a-b0c2-ee9315bfd1a2", "name": "Hostens", "icons": [{"id": "3bdfc3c5-fc30-4a27-b40f-5d5be2544c3d", "name": "Hostens", "type": "light"}]}]}, {"id": "89efcc2d-52f4-4ac3-988d-5d7f3b3cd0a7", "name": "2FAS", "tags": [], "issuers": ["2FAS", "Estadoz"], "match_rules": [], "icons_collections": [{"id": "a5b3fb65-4ec5-43e6-8ec1-49e24ca9e7ad", "name": "2FAS", "icons": [{"id": "38e26d32-3c76-4768-8e12-89a050676a07", "name": "2FAS", "type": "light"}]}]}, {"id": "8a6e8dde-9546-4e62-a30a-143dee285d79", "name": "WordPress", "tags": [], "issuers": ["WordPress.com"], "match_rules": [], "icons_collections": [{"id": "708df726-fb8b-4c01-8990-f2da0cd33839", "name": "WordPress", "icons": [{"id": "9ff31045-fdbc-4957-9abb-499e395aa5c4", "name": "WordPress", "type": "light"}, {"id": "c08a746e-3025-4a57-9652-34d0ac7690cd", "name": "WordPress", "type": "dark"}]}]}, {"id": "8ab8494b-e553-46de-b3e2-60b3b888c51f", "name": "Quidax", "tags": [], "issuers": [], "match_rules": [{"text": "Quidax", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Quidax", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "99f0da7e-0ea7-4845-9a79-d319b2d574c6", "name": "Quidax", "icons": [{"id": "dbfcf1f8-36a6-4693-9c72-872f5387af29", "name": "Quidax", "type": "light"}]}]}, {"id": "8abdb27c-6727-44ec-88b3-cb155d383334", "name": "Versio", "tags": [], "issuers": [], "match_rules": [{"text": "Versio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Versio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85ae1a2b-5e4a-4ed7-87a6-58346e6894aa", "name": "Versio", "icons": [{"id": "1534c6a1-568b-466b-a9be-0c252ee582d1", "name": "Versio", "type": "light"}]}]}, {"id": "8b2853fd-5cbd-4239-904e-b48153969b64", "name": "River Financial", "tags": [], "issuers": [], "match_rules": [{"text": "River Financial", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "River Financial", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "92c353ca-a0a3-4d99-aa67-5579d14b70f8", "name": "River Financial", "icons": [{"id": "12b23f10-9f26-477d-b687-be6e96502bfe", "name": "River Financial", "type": "light"}]}]}, {"id": "8b2cd893-4a24-4aaf-89b6-6e22b2c9ee6f", "name": "TransIP", "tags": [], "issuers": [], "match_rules": [{"text": "TransIP", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TransIP", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c19027da-45a2-4e12-81f9-a7cd7e848f31", "name": "TransIP", "icons": [{"id": "41efdbc7-5078-4d4c-8344-09a23aa5a79f", "name": "TransIP", "type": "dark"}, {"id": "9e64ac06-b77f-4461-b51b-31bfa006a865", "name": "TransIP", "type": "light"}]}]}, {"id": "8b3611e7-1c7b-459e-8fc5-97522ed4ddd2", "name": "Wyre", "tags": [], "issuers": [], "match_rules": [{"text": "Wyre", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wyre", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ecb3323c-fa3b-4901-a334-f714309b5eab", "name": "Wyre", "icons": [{"id": "94bc1561-b7c8-45d3-bca3-2c927ceeb04c", "name": "Wyre", "type": "light"}, {"id": "c8692887-6c42-4139-a4d6-711b85102243", "name": "Wyre", "type": "dark"}]}]}, {"id": "8ba7b1eb-c080-444d-815f-bf05cb909d00", "name": "Termius", "tags": [], "issuers": ["Termius"], "match_rules": null, "icons_collections": [{"id": "4436b171-7e38-4ad8-9e5f-d0d5ce411eb4", "name": "Termius", "icons": [{"id": "7bfa0a83-6672-491f-a0eb-477650042a96", "name": "Termius", "type": "light"}, {"id": "f68976ac-26b3-440c-99eb-3ad2b294e79f", "name": "Termius", "type": "dark"}]}]}, {"id": "8bf276fa-695e-4b11-bd27-42db60a8b074", "name": "Laravel Forge", "tags": [], "issuers": [], "match_rules": [{"text": "Laravel Forge", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Laravel Forge", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "75314cba-050f-4427-b70c-4df66b568d7e", "name": "Laravel Forge", "icons": [{"id": "bec39485-d328-41c2-afef-c02e7652a5d8", "name": "Laravel Forge", "type": "light"}]}]}, {"id": "8bf52f46-80c9-45b2-b29d-c6ca8c08eea8", "name": "Evernote", "tags": [], "issuers": ["Evernote"], "match_rules": [], "icons_collections": [{"id": "3b34f154-62db-45d5-a668-1fc7524fc06a", "name": "Evernote", "icons": [{"id": "ce446bdd-7b2c-43db-9b93-db6cb2e7c686", "name": "Evernote", "type": "light"}]}]}, {"id": "8bfe876e-7e7b-458c-b452-7caeda302a8d", "name": "Barracuda Networks", "tags": [], "issuers": [], "match_rules": [{"text": "Barracuda", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Barracuda", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "37de87f7-1f31-49ff-bda4-dadb082038ca", "name": "Barracuda Networks", "icons": [{"id": "648df04a-a0ff-456d-b6a4-531857b1a2ef", "name": "Barracuda Networks", "type": "light"}]}]}, {"id": "8c7591c7-c5b1-48ad-9b63-3ed394d48280", "name": "TaxBit", "tags": [], "issuers": [], "match_rules": [{"text": "TaxBit", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TaxBit", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "49ac9022-b8ed-4911-b7a2-8d49712c935b", "name": "TaxBit", "icons": [{"id": "fadd4bbe-1ec3-4642-be45-00eca63df349", "name": "TaxBit", "type": "light"}]}]}, {"id": "8c956e25-5890-4625-8599-c478aabf8857", "name": "Workplace", "tags": [], "issuers": [], "match_rules": [{"text": "Workplace", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Workplace", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cc95ae95-5773-4bcf-83d2-dccac6ebcc02", "name": "Workplace", "icons": [{"id": "90ef01ac-b4ac-4f2e-8b4d-3e05d5e85a38", "name": "Workplace", "type": "dark"}, {"id": "e267fac3-e18e-4e49-a2a1-28c168369f02", "name": "Workplace", "type": "light"}]}]}, {"id": "8cad6c46-8dfb-4ace-88d3-f3f231dcec7b", "name": "Capcom ID", "tags": [], "issuers": [], "match_rules": [{"text": "Capcom ID", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Capcom ID", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3832c307-800c-42c5-a32f-8dce33a46eef", "name": "Capcom ID", "icons": [{"id": "5c8eb69b-220c-4bff-b7c6-565a060c149a", "name": "Capcom ID", "type": "light"}]}]}, {"id": "8ccd201d-a371-4123-a84f-70348ca9336c", "name": "Toronto Metropolitan University", "tags": [], "issuers": [], "match_rules": [{"text": "Toronto Metropolitan University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Toronto Metropolitan University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "757ea6cd-4b92-4548-acb7-e0b94d659f38", "name": "Toronto Metropolitan University", "icons": [{"id": "283faaf9-f273-4dbf-a95c-ad3bd63d2a6a", "name": "Toronto Metropolitan University", "type": "light"}]}]}, {"id": "8cd97a5c-e890-47ee-8597-8095bba4d400", "name": "Bittrex", "tags": [], "issuers": [], "match_rules": [{"text": "Bittrex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "672c798a-3c40-4eb3-b489-de0bc52d20a9", "name": "Bittrex", "icons": [{"id": "306834f5-9e68-4fa3-b9ff-ac8e32a22586", "name": "Bittrex", "type": "light"}]}]}, {"id": "8cda437e-8759-4571-b0c9-9bee964fbd64", "name": "Standard Notes", "tags": [], "issuers": ["Standard Notes"], "match_rules": null, "icons_collections": [{"id": "37799941-a47d-4b12-86f1-fdddda28a05f", "name": "Standard Notes", "icons": [{"id": "8e384637-0826-4db4-8f52-a8daa6d6b154", "name": "Standard Notes", "type": "light"}, {"id": "deaebdcd-5cbe-4a35-895f-9330fc287e3f", "name": "Standard Notes", "type": "dark"}]}]}, {"id": "8cf11e76-9989-41a4-b623-0c6bad678645", "name": "HEY", "tags": [], "issuers": ["HEY"], "match_rules": null, "icons_collections": [{"id": "fbc8da17-9128-430f-b86b-8aa5e735a299", "name": "HEY", "icons": [{"id": "0f0277a1-c6e5-4141-9182-75b4425de101", "name": "HEY", "type": "light"}]}]}, {"id": "8d21146d-684e-47fe-8658-3b11cfd11138", "name": "Bitdefender", "tags": [], "issuers": ["Bitdefender"], "match_rules": null, "icons_collections": [{"id": "394aa3fc-2818-45f2-8f0f-612856b2ab82", "name": "Bitdefender", "icons": [{"id": "9ff7f176-86fa-4568-87a5-80195e810ed4", "name": "Bitdefender", "type": "light"}]}]}, {"id": "8d28c57c-2344-45e4-aa5b-fc41d0d8578c", "name": "Unfuddle STACK", "tags": [], "issuers": [], "match_rules": [{"text": "Unfuddle STACK", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Unfuddle STACK", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "184c88ae-3399-4432-b895-5a461111f6cd", "name": "Unfuddle STACK", "icons": [{"id": "cdee790b-6c36-4cbb-8365-94fe7aa71d77", "name": "Unfuddle STACK", "type": "light"}]}]}, {"id": "8d2b7cfd-2d6e-4a82-af14-4d60924abf84", "name": "Skrill", "tags": [], "issuers": ["Skrill"], "match_rules": [], "icons_collections": [{"id": "6f8b55b6-d7bb-4691-bda2-2b1de39fb448", "name": "Skrill", "icons": [{"id": "d7b9c9f2-a1e6-4861-943d-59761adb6a88", "name": "Skrill", "type": "light"}]}]}, {"id": "8d54ea9f-0471-4ae1-90cd-b819aecf5c74", "name": "Recruitee", "tags": [], "issuers": [], "match_rules": [{"text": "Recruitee", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Recruitee", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4aea03e2-9af0-41c4-a85b-eee56ef8f912", "name": "Recruitee", "icons": [{"id": "4a15ec6d-35b2-4364-b2e7-4f6abe6bbbce", "name": "Recruitee", "type": "light"}]}]}, {"id": "8d8cd023-32c3-41d7-afa2-1434b7b81a68", "name": "Discourse", "tags": [], "issuers": ["Discourse"], "match_rules": [], "icons_collections": [{"id": "2f5845bf-7788-4b08-9bc8-a889d38fa6f6", "name": "Discourse", "icons": [{"id": "14eda6ce-931a-4eba-8588-1059943f5c03", "name": "Discourse", "type": "light"}]}]}, {"id": "8daa3100-d368-422b-92e4-11f305d23b20", "name": "eclincher", "tags": [], "issuers": [], "match_rules": [{"text": "eclincher", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "eclincher", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f9a595cf-0937-43bd-99b5-0911d742da2e", "name": "eclincher", "icons": [{"id": "9e16692d-4575-4da1-882b-59ae627cac2b", "name": "eclincher", "type": "light"}]}]}, {"id": "8de8285e-b2bc-44ed-86b9-9efd3c58a2b6", "name": "Bitso", "tags": [], "issuers": [], "match_rules": [{"text": "Bitso", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitso", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c75ace06-ccae-4c43-a58a-baecf0e1ef4f", "name": "Bitso", "icons": [{"id": "1f87b650-e26a-4942-b2d1-7648b476ebd4", "name": "Bitso", "type": "light"}, {"id": "6ef7dfe6-d96f-405b-ac20-cfa27997c280", "name": "Bitso", "type": "dark"}]}]}, {"id": "8e341159-38ce-434d-928a-d76637c9b827", "name": "Terraform", "tags": [], "issuers": [], "match_rules": [{"text": "Terraform", "field": "issuer", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "439ca1bc-c64a-4bc6-85c2-296815ba76f3", "name": "Terraform", "icons": [{"id": "781de4e7-68e9-462a-b5ae-780be6672d55", "name": "Terraform", "type": "light"}]}]}, {"id": "8e344ee0-9350-45e4-b6ef-4f7c06ba3798", "name": "OPSkins", "tags": [], "issuers": ["OPSkins"], "match_rules": [], "icons_collections": [{"id": "0a557467-29de-4967-a905-2351f074d3d8", "name": "OPSkins", "icons": [{"id": "2f92cf23-d6a0-4342-a991-64bbc0070e02", "name": "OPSkins", "type": "light"}, {"id": "b771c77c-885e-43fd-86a9-64d258993bfc", "name": "OPSkins", "type": "dark"}]}]}, {"id": "8e426c3b-4ad0-4ed7-8520-cc0bb4120bb1", "name": "Algolia", "tags": [], "issuers": [], "match_rules": [{"text": "Algolia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Algolia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f40b252a-106c-4353-a4da-5d861dc657dd", "name": "Algolia", "icons": [{"id": "a40f31e7-7799-4eb5-8abf-1040947ce50c", "name": "Algolia", "type": "light"}]}]}, {"id": "8e6b9eea-ce00-4371-884a-b540b3467950", "name": "Figma", "tags": [], "issuers": ["Figma"], "match_rules": [], "icons_collections": [{"id": "3f24378a-ab65-4034-ae7f-b13f624de766", "name": "Figma", "icons": [{"id": "39bdc4e6-a43d-4a16-8ee3-620b145221d0", "name": "Figma", "type": "light"}]}]}, {"id": "8e806660-1246-4beb-bca4-46b2a1254a58", "name": "Guideline", "tags": [], "issuers": [], "match_rules": [{"text": "Guideline", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Guideline", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "428e7dfb-928c-46d3-95d1-a32b28a8b62b", "name": "Guideline", "icons": [{"id": "5208b94c-6801-4124-a4b2-2490c4dc42e9", "name": "Guideline", "type": "light"}, {"id": "720a2eef-f191-4be3-8770-664aaff093a6", "name": "Guideline", "type": "dark"}]}]}, {"id": "8ea00cb7-ca69-4b43-b368-c39ef874b5cd", "name": "Sprinklr", "tags": [], "issuers": [], "match_rules": [{"text": "Sprinklr", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sprinklr", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c4965be7-bf4b-47a6-aa00-4e3f2874d60e", "name": "Sprinklr", "icons": [{"id": "c84bb356-8cef-4c56-b2b6-dcc4e92a7ce9", "name": "Sprinklr", "type": "light"}, {"id": "dbabcbdd-a6f8-413c-a3bf-d8574659584d", "name": "Sprinklr", "type": "dark"}]}]}, {"id": "8f097659-0b9c-4209-9c47-9f9a64ba510a", "name": "Register365", "tags": [], "issuers": [], "match_rules": [{"text": "Register365", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Register365", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d96edb81-4e1a-433f-9304-30c145391d40", "name": "Register365", "icons": [{"id": "59bff2ac-c79d-45fc-9f42-080783780ba9", "name": "Register365", "type": "light"}, {"id": "fa995159-a3ca-4afa-a7b2-7d47c33d32db", "name": "Register365", "type": "dark"}]}]}, {"id": "8f3be8b1-bdd9-407a-8ad1-e169e291927e", "name": "Mos.ru", "tags": [], "issuers": [], "match_rules": [{"text": "Mos.ru", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mos.ru", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2da45f6a-9def-458b-8ffd-0f9e97481a40", "name": "Mos.ru", "icons": [{"id": "ffa8a631-eafc-4871-b399-4d762f379286", "name": "Mos.ru", "type": "light"}]}]}, {"id": "8f4c7951-526e-49b9-8996-28d65d15ed47", "name": "Wyze", "tags": [], "issuers": ["Wyze"], "match_rules": [], "icons_collections": [{"id": "233af9ea-d8cb-4586-863e-819ca7c46eae", "name": "Wyze", "icons": [{"id": "06c4394e-8b2e-4efb-9c0d-8feebea4b301", "name": "Wyze", "type": "light"}]}]}, {"id": "8f9fc051-5d1e-42d5-929d-1e72a9f85855", "name": "Tauros", "tags": [], "issuers": [], "match_rules": [{"text": "Tauros", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tauros", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "557f8079-c3d4-429c-8fe2-1c126557ec3c", "name": "Tauros", "icons": [{"id": "78c1644a-0cd0-4b3f-b9f1-48d11a61785c", "name": "Tauros", "type": "dark"}, {"id": "a30b2dcf-319b-4539-9584-7acf14b3a06f", "name": "Tauros", "type": "light"}]}]}, {"id": "8ffd524b-2986-4fd6-b7f7-418dcc3d8f9f", "name": "Caspio", "tags": [], "issuers": [], "match_rules": [{"text": "Caspio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Caspio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a5fcaee7-01c4-4ace-aa62-d8d94e6823c7", "name": "Caspio", "icons": [{"id": "6adca200-8ad4-4596-87aa-5875c22cd1ef", "name": "Caspio", "type": "light"}]}]}, {"id": "9017ad1f-3d41-4cf9-a4f1-cbe4b3d9ab68", "name": "Teamwork", "tags": [], "issuers": [], "match_rules": [{"text": "Teamwork", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Teamwork", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "368ea9b5-46b2-46db-9440-eddb84c65449", "name": "Teamwork", "icons": [{"id": "cc6fbf2a-efee-4e82-a137-c5750b92c531", "name": "Teamwork", "type": "light"}]}]}, {"id": "901db5c9-a04b-4fd9-b4b2-40809967a777", "name": "Statuspage", "tags": [], "issuers": [], "match_rules": [{"text": "Statuspage", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Statuspage", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5258781d-f346-437c-a72f-c4f9d4abdc06", "name": "Statuspage", "icons": [{"id": "a668c41c-4e65-4ece-b8b6-c6dcfcedc0ac", "name": "Statuspage", "type": "light"}]}]}, {"id": "903c215e-cb1d-448b-ab92-7cdef3361c1b", "name": "Mattermost", "tags": [], "issuers": [], "match_rules": [{"text": "Mattermost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mattermost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4ab1a53f-7ca6-45bc-9db9-141a88f2a6ad", "name": "Mattermost", "icons": [{"id": "2dd4a834-6533-499e-afd2-f853c7181b03", "name": "Mattermost", "type": "dark"}, {"id": "6fb620af-67ef-4c24-8d74-952fa2ffc9c5", "name": "Mattermost", "type": "light"}]}]}, {"id": "90660e86-1b56-47ae-b89e-b8ee6f544ad9", "name": "Pocketsmith", "tags": [], "issuers": [], "match_rules": [{"text": "Pocketsmith", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pocketsmith", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "86db4634-c7d0-4d75-ad4d-24f74464eb57", "name": "Pocketsmith", "icons": [{"id": "95d700e7-3fe1-480a-a755-cf916d7f036a", "name": "Pocketsmith", "type": "light"}]}]}, {"id": "906cdfcd-6c92-4eb1-a0ca-963ebc867489", "name": "eUKhost", "tags": [], "issuers": [], "match_rules": [{"text": "eUKhost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "eUKhost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "92200b10-a81b-4d42-92aa-5b5855a89bd5", "name": "eUKhost", "icons": [{"id": "610c75f7-e322-4b00-8e0c-04bd914a92ea", "name": "eUKhost", "type": "light"}]}]}, {"id": "90a4ed41-a143-4681-a324-b57f21683061", "name": "Quickbooks Online", "tags": ["intuit"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "dbccf2f4-2073-479c-a655-fe19daf4ac2c", "name": "Quickbooks Online", "icons": [{"id": "d84f3e2a-ec6f-4401-acd5-f3dd1553866c", "name": "Quickbooks Online", "type": "light"}]}]}, {"id": "912fc163-7efd-4d1e-8795-f380a12c2c71", "name": "StormGain", "tags": [], "issuers": [], "match_rules": [{"text": "StormGain", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StormGain", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cdca2df5-ef53-4eb1-bb47-d9d3cc9cffda", "name": "StormGain", "icons": [{"id": "ea3a19ea-d7cc-4eee-884e-3213ff8f664c", "name": "StormGain", "type": "light"}]}]}, {"id": "921c218f-9aa4-4191-a638-dd5cb1a5a19a", "name": "TorGuard", "tags": [], "issuers": [], "match_rules": [{"text": "TorGuard", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TorGuard", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d31b0911-28ce-4f5f-9d38-a9a0757548a4", "name": "TorGuard", "icons": [{"id": "044bc5ed-08a0-48b7-b63b-a6269b558590", "name": "TorGuard", "type": "dark"}, {"id": "4806f4ef-80cb-4a20-afd2-387448ebad5e", "name": "TorGuard", "type": "light"}]}]}, {"id": "923c55fc-7eca-4027-b853-c97955b356cc", "name": "Atlantiss", "tags": [], "issuers": ["Atlantiss"], "match_rules": [], "icons_collections": [{"id": "3db5e1e5-6dcc-427c-91a7-08b31ed3d3be", "name": "Atlantiss", "icons": [{"id": "5ceae49b-9049-45fa-85cf-61b57636646d", "name": "Atlantiss", "type": "light"}]}]}, {"id": "924f8361-2435-41fe-8070-b2f6b105b042", "name": "LinkedIn", "tags": [], "issuers": ["LinkedIn"], "match_rules": [], "icons_collections": [{"id": "843da9a7-a44a-42c6-9fdd-2a723a7d05d7", "name": "LinkedIn", "icons": [{"id": "dfa1f1c1-286c-4ab2-817b-cac420c83a8d", "name": "LinkedIn", "type": "light"}]}]}, {"id": "925c70ca-5442-4411-939e-d0ae4775c182", "name": "Nozbe Teams", "tags": [], "issuers": [], "match_rules": [{"text": "Nozbe Teams", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nozbe Teams", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c49414b9-783e-4b67-9521-4ce8a5a36d48", "name": "Nozbe Teams", "icons": [{"id": "d4132f69-b4f3-4e66-9410-265f81c20868", "name": "Nozbe Teams", "type": "light"}]}]}, {"id": "927e82a1-cf11-4c5b-ab11-b76b56681fa7", "name": "VRChat", "tags": [], "issuers": [], "match_rules": [{"text": "VRChat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VRChat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6ebbf091-d242-4155-bf89-4df4a4b37175", "name": "VRChat", "icons": [{"id": "c0ff99e7-7e2d-40ce-9340-1106984125f7", "name": "VRChat", "type": "light"}]}]}, {"id": "928f0793-73ab-4c92-a4c1-fdece77f7091", "name": "TaxDome", "tags": [], "issuers": [], "match_rules": [{"text": "TaxDome", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TaxDome", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4fb91386-8652-421d-a63e-8593d28f72e1", "name": "TaxDome", "icons": [{"id": "a0258e0b-dc6a-476f-8ad3-178990941ae2", "name": "TaxDome", "type": "light"}]}]}, {"id": "92acffb9-c266-4117-bfbe-1678642b6dbb", "name": "InterServer", "tags": [], "issuers": [], "match_rules": [{"text": "InterServer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "InterServer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f89517fe-02f5-4aa0-9545-e932b978c22a", "name": "InterServer", "icons": [{"id": "4e2dc9f8-d082-406c-880c-1238ffdfc39b", "name": "InterServer", "type": "light"}]}]}, {"id": "92db112e-82e3-4890-ac4b-922b498bf65d", "name": "DeployHQ", "tags": [], "issuers": [], "match_rules": [{"text": "DeployHQ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DeployHQ", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6f182ab5-dca8-4d55-8504-edcba30b3f88", "name": "DeployHQ", "icons": [{"id": "129654fe-6a80-4116-a68a-e82b05e35915", "name": "DeployHQ", "type": "light"}, {"id": "7e2a756e-e6e2-4671-83cf-2e21ab1d631a", "name": "DeployHQ", "type": "dark"}]}]}, {"id": "93eb1618-49e2-415d-82b6-269cf16dc1e0", "name": "One.com", "tags": [], "issuers": [], "match_rules": [{"text": "One.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "One.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f3015bb9-58bb-4fbd-bc27-e9a9c134117f", "name": "One.com", "icons": [{"id": "d3d85cf6-e159-4032-acde-d10263336e36", "name": "One.com", "type": "light"}]}]}, {"id": "94103714-69d0-4715-bea3-63ed3e60df02", "name": "Orbx Shop", "tags": [], "issuers": ["OrbxDirect"], "match_rules": null, "icons_collections": [{"id": "73a4aeba-3fc7-4cc0-b661-cb96fc72fa10", "name": "Orbx Shop", "icons": [{"id": "f8275185-3ad3-470b-bbbb-37eeb2881db6", "name": "Orbx Shop", "type": "light"}]}]}, {"id": "94132bbc-a0db-4b2b-b8c1-c6c4e721cc8c", "name": "Qualia", "tags": [], "issuers": [], "match_rules": [{"text": "Qualia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Qualia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "19952685-093d-4cc2-b234-dd12c04f9309", "name": "Qualia", "icons": [{"id": "d3317cf5-75f6-4623-b112-c1cc9174a667", "name": "Qualia", "type": "light"}]}]}, {"id": "9459690a-8958-4fd9-ae4c-d9b34869682b", "name": "ScaleGrid", "tags": [], "issuers": [], "match_rules": [{"text": "ScaleGrid", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ScaleGrid", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "307ffb85-ae45-4c00-a954-c12af9ef46f3", "name": "ScaleGrid", "icons": [{"id": "5f770dc7-6368-4900-a2c3-f820610c1b7d", "name": "ScaleGrid", "type": "light"}]}]}, {"id": "945f09b7-b3ac-46d2-8e35-88cf8637b17c", "name": "omg.lol", "tags": [], "issuers": [], "match_rules": [{"text": "omg.lol", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "omg.lol", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "66e5c2d4-6186-42dc-9ec8-b33ba7d7789e", "name": "omg.lol", "icons": [{"id": "76e4d444-1502-4cf5-b2c8-a19f8907a79c", "name": "omg.lol", "type": "light"}]}]}, {"id": "946154c5-1bb5-4896-80ba-527f58e48034", "name": "Pleo", "tags": [], "issuers": [], "match_rules": [{"text": "Pleo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pleo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "96cb4b6f-8f6f-4e23-9c61-ce21eae487e0", "name": "Pleo", "icons": [{"id": "91b6f8ee-25bc-4bc9-b2d3-da8a5994b6ac", "name": "Pleo", "type": "dark"}, {"id": "e22d3702-274e-48bb-961f-2aabc20e2f79", "name": "Pleo", "type": "light"}]}]}, {"id": "946cf1e6-dedb-4994-922b-62b0d73b17c1", "name": "Parimatch", "tags": [], "issuers": [], "match_rules": [{"text": "Parimatch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Parimatch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0ab73b7f-939e-4660-b619-8c50e3ad8cf5", "name": "Parimatch", "icons": [{"id": "fcd9acae-054b-48a9-8b62-54290893a059", "name": "Parimatch", "type": "light"}]}]}, {"id": "94712ff8-bbe1-41bc-8b81-0f0395463e88", "name": "Login.gov", "tags": [], "issuers": ["Login.gov"], "match_rules": [], "icons_collections": [{"id": "8ad7697b-6782-47e4-a9fb-8e07499825ba", "name": "Login.gov", "icons": [{"id": "95d36fae-2a65-474c-b236-bcc5ad0247cd", "name": "Login.gov", "type": "light"}]}]}, {"id": "9478a1e5-5fdb-4e1f-b3ad-787a32528ff0", "name": "BTC BOX", "tags": [], "issuers": [], "match_rules": [{"text": "BTC BOX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BTC BOX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a770e5e7-7920-4d7b-92d8-2ba9594f3b5e", "name": "BTC BOX", "icons": [{"id": "6984af70-d302-4d3c-8752-7ded98dc5376", "name": "BTC BOX", "type": "dark"}, {"id": "e6530da7-d475-430d-9512-5eadce9262a8", "name": "BTC BOX", "type": "light"}]}]}, {"id": "950bc870-769c-4610-9b38-6ad6222f0e88", "name": "T. Rowe Price", "tags": [], "issuers": [], "match_rules": [{"text": "T. Rowe Price", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "T. Rowe Price", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4a45ada8-cc81-40e0-a277-c692efb0326d", "name": "T. Rowe Price", "icons": [{"id": "d5a4926a-d793-422b-abbf-0dd17d8f5107", "name": "T. Rowe Price", "type": "light"}]}]}, {"id": "9570b3fb-6de9-4a2b-9375-cb9338f19cf2", "name": "BitGo", "tags": [], "issuers": [], "match_rules": [{"text": "BitGo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitGo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ed1e3140-e59c-4606-ad92-5271397d2cda", "name": "BitGo", "icons": [{"id": "b283dfe9-e7a4-4c58-93bc-e584f89969f4", "name": "BitGo", "type": "light"}]}]}, {"id": "95fec776-13f1-4315-b66e-4880ba15e7b4", "name": "Moniker", "tags": [], "issuers": [], "match_rules": [{"text": "Moniker", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Moniker", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "320bc9a4-d685-43f0-a9df-cd7865763cac", "name": "Moniker", "icons": [{"id": "2a1b9b08-2c52-401c-a3fd-5b8723c25a01", "name": "Moniker", "type": "light"}]}]}, {"id": "96234b0e-7412-4d26-bbb5-1a00d0de1e1f", "name": "Mastodon", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "bd364131-1fec-4597-b606-1746ded21b09", "name": "Mastodon", "icons": [{"id": "59416d88-da3f-4f83-8f23-b5a3986ccce6", "name": "Mastodon", "type": "light"}]}]}, {"id": "964358ca-60e7-4613-8a33-9b31c53b79a6", "name": "CryptoMKT", "tags": [], "issuers": ["www.cryptomkt.com"], "match_rules": [], "icons_collections": [{"id": "0d065bba-9c80-4e7f-8af2-f7d3e31477ce", "name": "CryptoMKT", "icons": [{"id": "2b406624-cd90-41fc-b4fe-8b38bf81db1b", "name": "CryptoMKT", "type": "light"}, {"id": "eb17a895-ef47-4310-b0c3-f1377ffc3284", "name": "CryptoMKT", "type": "dark"}]}]}, {"id": "96db7cba-3226-45d6-8b34-2d081b860cd6", "name": "Asana", "tags": [], "issuers": ["Asana"], "match_rules": null, "icons_collections": [{"id": "2388f03a-9e91-4462-917f-70d86678b002", "name": "Asana", "icons": [{"id": "386b44e8-33cc-4bd9-bca9-5b46b1f4c22a", "name": "Asana", "type": "light"}]}]}, {"id": "9703b1b3-9942-4789-80e3-a8ef8c52daad", "name": "Autodesk", "tags": [], "issuers": [], "match_rules": [{"text": "Autodesk", "field": "label", "matcher": "equals", "ignore_case": true}], "icons_collections": [{"id": "ee3f948d-de04-4d92-9899-949b0b193a1d", "name": "Autodesk", "icons": [{"id": "09b899ba-95af-4097-ab04-d622e3529401", "name": "Autodesk", "type": "light"}, {"id": "ad9b2c46-4800-49eb-9475-ec03ec48d94c", "name": "Autodesk", "type": "dark"}]}]}, {"id": "9746650c-0dc6-438b-982f-5c38dc72cce1", "name": "Binance", "tags": [], "issuers": ["Binance.com", "BinanceUS"], "match_rules": [], "icons_collections": [{"id": "e547c093-2b09-4196-b69b-72e77ef1ed9c", "name": "Binance", "icons": [{"id": "70350fcc-5eec-4e01-b755-1a935b954359", "name": "Binance", "type": "light"}]}]}, {"id": "97657a82-03b2-4267-9d75-90facb792666", "name": "123 Form Builder", "tags": [], "issuers": [], "match_rules": [{"text": "123 Form Builder", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "123FormBuilder", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "123 Form Builder", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "123FormBuilder", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dfb1c4bf-9ad6-4cb9-a284-68c9dcd34645", "name": "123 Form Builder", "icons": [{"id": "c57d325a-3760-4950-aa7c-cc008f01e2c8", "name": "123 Form Builder", "type": "light"}]}]}, {"id": "976f6ee4-c29c-4e58-93b0-aef7ad73d426", "name": "Wikimedia", "tags": [], "issuers": [], "match_rules": [{"text": "Wikimedia", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Wikimedia", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1adf879b-cffe-4807-b63b-49cfc0d2192d", "name": "Wikimedia", "icons": [{"id": "d271510b-52e6-4e6e-a01b-e111bda8e90a", "name": "Wikimedia", "type": "light"}]}]}, {"id": "9785c37b-1d7a-477b-ab22-65e3ccd50608", "name": "Contabo", "tags": [], "issuers": [], "match_rules": [{"text": "Contabo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Contabo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5199f3ae-dd15-457f-a14a-a9533db1c1e4", "name": "Contabo", "icons": [{"id": "887ce4cc-4d39-46fb-bd42-eddb5bde8759", "name": "Contabo", "type": "light"}]}]}, {"id": "978bcc0e-7cd2-4f49-9fdc-3966751d92f4", "name": "IFIRMA.PL", "tags": [], "issuers": ["IFIRMA.PL"], "match_rules": null, "icons_collections": [{"id": "82bd1ca0-e4b1-4a9e-a5ac-4c2ae6b2a44a", "name": "IFIRMA.PL", "icons": [{"id": "97232280-5e6e-450f-a5f7-d6c785b9c1b0", "name": "IFIRMA.PL", "type": "light"}]}]}, {"id": "97999ca3-977b-47a6-ad23-442640e8aa52", "name": "CloudAMQP", "tags": [], "issuers": [], "match_rules": [{"text": "CloudAMQP", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CloudAMQP", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b418342-0985-4cda-915f-56aa6107c7a1", "name": "CloudAMQP", "icons": [{"id": "f479c23b-02b5-4d78-a63d-3e177e3d2235", "name": "CloudAMQP", "type": "light"}]}]}, {"id": "97a0169f-8805-493f-85ae-990fbe83ba48", "name": "Pi-hole", "tags": [], "issuers": [], "match_rules": [{"text": "Pi-hole", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pi-hole", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fc85b66b-7732-406e-aa3a-0d2f50c41cd7", "name": "Pi-hole", "icons": [{"id": "20839497-1bb8-4b2d-be7f-1a40acf1ce8c", "name": "Pi-hole", "type": "light"}]}]}, {"id": "97b7c609-edce-400d-b0ce-a1894ac4305b", "name": "OpenVPN", "tags": [], "issuers": ["OpenVPN"], "match_rules": [], "icons_collections": [{"id": "91a3eda0-5906-4ba9-ba03-5c6c584c55ab", "name": "OpenVPN", "icons": [{"id": "debf8977-8c70-4ed1-adbe-03a844e67b93", "name": "OpenVPN", "type": "dark"}, {"id": "e6e0f5ae-ab71-41ff-b1d6-8ce22cd757e7", "name": "OpenVPN", "type": "light"}]}]}, {"id": "97d8ff61-4835-4471-982d-794f79aa6be0", "name": "Biterfill", "tags": [], "issuers": [], "match_rules": [{"text": "Biterfill", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Biterfill", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6b777110-46a2-40e0-bee7-391d19d5073b", "name": "Biterfill", "icons": [{"id": "43f37539-3d74-4277-9127-493407f8dfa8", "name": "Biterfill", "type": "dark"}, {"id": "99354818-ef2e-4373-9bbe-4e3d44baffab", "name": "Biterfill", "type": "light"}]}]}, {"id": "97dac6d8-f6e9-467a-8341-44514a7a04b6", "name": "Studio Ninja", "tags": [], "issuers": [], "match_rules": [{"text": "Studio Ninja", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Studio Ninja", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "67378f92-09c0-4113-8c7e-958bda6ea387", "name": "Studio Ninja", "icons": [{"id": "9993597a-29bf-41f7-8a55-dc036a763a57", "name": "Studio Ninja", "type": "light"}, {"id": "d253026b-6a1a-4f3a-9c5d-887d27388b96", "name": "Studio Ninja", "type": "dark"}]}]}, {"id": "97dcded8-02b9-42a4-af3b-f5d414b45d05", "name": "Linus Tech Tips", "tags": [], "issuers": ["Linus Tech Tips"], "match_rules": [], "icons_collections": [{"id": "c9a5ca56-05d0-4f2a-a572-da373e953301", "name": "Linus Tech Tips", "icons": [{"id": "519356d7-c8b9-4b6b-9e92-d140922eb537", "name": "Linus Tech Tips", "type": "light"}]}]}, {"id": "97ff87f6-f264-449b-a946-ceda22cb7cfa", "name": "OPNsense", "tags": [], "issuers": [], "match_rules": null, "icons_collections": [{"id": "6a0fb3a0-7cb3-4c8e-8ef2-14d6ae162b85", "name": "OPNsense", "icons": [{"id": "10a92caa-5490-47ac-8ad3-3b932809d799", "name": "OPNsense", "type": "light"}]}]}, {"id": "9828efb1-2440-4e67-9a11-1181d2c3b53b", "name": "NOYB", "tags": [], "issuers": [], "match_rules": [{"text": "NOYB", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NOYB", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "724d854a-f90f-43db-b815-9791621f3936", "name": "NOYB", "icons": [{"id": "0de81f67-6105-4fd2-b1e5-7896c96b3a8a", "name": "NOYB", "type": "light"}]}]}, {"id": "98c9b128-d065-4946-a838-07dfa68f1669", "name": "DeinServerHost", "tags": [], "issuers": [], "match_rules": [{"text": "DeinServerHost", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "94159de2-2211-4f21-ae47-221cc364a31e", "name": "DeinServerHost", "icons": [{"id": "48bf094c-31bc-405f-b3dc-d31ebf874d32", "name": "DeinServerHost", "type": "light"}, {"id": "e39b8de1-1969-4a6f-ac93-edac97c11c27", "name": "DeinServerHost", "type": "dark"}]}]}, {"id": "98cb606b-1b2e-4df5-b46d-50da2184d925", "name": "PlanetHoster", "tags": [], "issuers": [], "match_rules": [{"text": "PlanetHoster", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "PlanetHoster", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3c9c902e-8b4d-4187-a340-1c7c82e34144", "name": "PlanetHoster", "icons": [{"id": "58fa0823-49f0-4158-bd72-59b7e3ab1a61", "name": "PlanetHoster", "type": "light"}]}]}, {"id": "992be346-7bd6-4389-9efd-8dfab6018452", "name": "Dropbox Sign", "tags": ["hello"], "issuers": ["HelloSign"], "match_rules": [{"text": "Dropbox Sign", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Dropbox Sign", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "be69eeeb-4df0-47c8-804a-b8808552f592", "name": "Dropbox Sign", "icons": [{"id": "724d2f1a-5379-446a-843b-9c486eb9d673", "name": "Dropbox Sign", "type": "dark"}, {"id": "c56bfaa8-4f3b-405f-8ad5-64d5d51d377d", "name": "Dropbox Sign", "type": "light"}]}]}, {"id": "9a12cc0d-36f0-4570-8dd3-f193d0a1e286", "name": "HostMonster", "tags": [], "issuers": [], "match_rules": [{"text": "HostMonster", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HostMonster", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2bb2f1a6-f9e8-4297-a35e-b83d1d58e98a", "name": "HostMonster", "icons": [{"id": "bf7fe254-3351-45f0-8b46-e4d3a8e8ac8f", "name": "HostMonster", "type": "light"}]}]}, {"id": "9a24d1ca-da74-4f81-88ae-d3d174300e30", "name": "AWS", "tags": ["amazon", "web", "services"], "issuers": ["Amazon Web Services"], "match_rules": [], "icons_collections": [{"id": "d3b86ff6-7dda-40cc-a63e-c3db426460b7", "name": "AWS", "icons": [{"id": "02840c5b-3d46-4c64-954a-04fe60ffd2ac", "name": "Amazon Web Services", "type": "light"}, {"id": "aa7806a4-4768-4354-87ef-80adb34304aa", "name": "Amazon Web Services", "type": "dark"}]}]}, {"id": "9a4fcb02-0bc1-4ea9-8dce-dbe60353ab4c", "name": "Osirium PAM", "tags": [], "issuers": [], "match_rules": [{"text": "Osirium", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Osirium", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "218622ba-b10c-4b24-b5ce-8b98735ed84e", "name": "Osirium PAM", "icons": [{"id": "969c9535-d56b-493c-901a-30c10a5ac43e", "name": "Osirium PAM", "type": "dark"}, {"id": "de03167f-ce02-44e8-b23a-eb9ab0a89285", "name": "Osirium PAM", "type": "light"}]}]}, {"id": "9a6e29d3-54be-4793-af01-7d9f1ca4f941", "name": "Allegro", "tags": [], "issuers": ["Allegro"], "match_rules": [], "icons_collections": [{"id": "163f6301-123d-4925-8058-07b04146b750", "name": "Allegro", "icons": [{"id": "1b27c292-00a7-461a-9e3d-0203dfe11185", "name": "Allegro", "type": "light"}]}]}, {"id": "9a7a2d73-be0c-4811-ac3c-8969bceb1056", "name": "Hubdoc", "tags": [], "issuers": [], "match_rules": [{"text": "Hubdoc", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hubdoc", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "122f5b3a-6894-4450-b6ba-75102d99625e", "name": "Hubdoc", "icons": [{"id": "55c13ae8-9e43-4b5b-a6a8-0c2492ece784", "name": "Hubdoc", "type": "light"}]}]}, {"id": "9aa4d939-3fd7-4f4f-a046-58a5662a018e", "name": "EasyDMARC", "tags": [], "issuers": [], "match_rules": [{"text": "EasyDMARC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "EasyDMARC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5b447e9e-e23f-4b60-bc6d-888b7574ef40", "name": "EasyDMARC", "icons": [{"id": "49c418da-d8cc-4a32-865a-584f3b21f90a", "name": "EasyDMARC", "type": "light"}]}]}, {"id": "9abb77dc-d928-4e12-9a2b-904f68d919c5", "name": "QRZ", "tags": [], "issuers": [], "match_rules": [{"text": "QRZ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "QRZ", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ec62f7c5-8f71-440a-97cc-5b0cbc0604ec", "name": "QRZ", "icons": [{"id": "846ac7ed-220a-44e0-aa17-e5a2d65c0536", "name": "QRZ", "type": "light"}]}]}, {"id": "9b50cb0f-8a65-44ef-b36e-94f3a8bf6e9a", "name": "Shift4Shop", "tags": [], "issuers": [], "match_rules": [{"text": "Shift4Shop", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Shift4Shop", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "42d488e0-f71c-4a69-b375-614c53955583", "name": "Shift4Shop", "icons": [{"id": "928bb927-c3db-4ac2-895d-402950ff8b4a", "name": "Shift4Shop", "type": "light"}]}]}, {"id": "9bb3d16f-9d15-4de4-90af-a61233d7e799", "name": "MS To-Do", "tags": ["Microsoft"], "issuers": [], "match_rules": [{"text": "Microsoft To-Do", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Microsoft To-Do", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bd965e39-9884-4880-8e5a-a200a8b461c1", "name": "MS To-Do", "icons": [{"id": "945d3b44-3f21-4189-acb6-82ad4c08069b", "name": "Microsoft To-Do", "type": "light"}]}]}, {"id": "9bbfeea9-6b58-4e8a-a00d-b1468519e21d", "name": "Workato", "tags": [], "issuers": [], "match_rules": [{"text": "Workato", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Workato", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "68ad5e41-8a75-46f6-b359-47475b8a6038", "name": "Workato", "icons": [{"id": "c33fea1f-7feb-4745-9336-ac0df5d4ab1a", "name": "Workato", "type": "light"}]}]}, {"id": "9bcc287d-63ba-48ef-81f2-dd011019edba", "name": "TicketSource", "tags": [], "issuers": [], "match_rules": [{"text": "TicketSource", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TicketSource", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4f464db6-401c-446a-b7d5-9f58a9c8a4c1", "name": "TicketSource", "icons": [{"id": "5722fdea-1712-4315-8ef4-581b727c8793", "name": "TicketSource", "type": "light"}]}]}, {"id": "9bef67a1-d622-4748-ab5b-e96e90f7998c", "name": "Avanza", "tags": [], "issuers": [], "match_rules": [{"text": "Avanza", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Avanza", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "de2ead78-add8-450b-a2ff-b7a84070c66b", "name": "Avanza", "icons": [{"id": "b6954f0a-1daa-493f-9bef-11db60dbbfeb", "name": "Avanza", "type": "light"}]}]}, {"id": "9c0baa3c-2ff6-4f54-aaf3-9c256c98e884", "name": "Avigilon", "tags": [], "issuers": [], "match_rules": [{"text": "Avigilon", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Avigilon", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "65eba2aa-ace3-487f-9f23-89684125eddd", "name": "Avigilon", "icons": [{"id": "274400c5-31c9-4023-8dc3-03749e3e59bf", "name": "Avigilon", "type": "light"}]}]}, {"id": "9c1cb88f-2444-4f0d-9822-f6d2afdc88e8", "name": "GrowingIO", "tags": [], "issuers": [], "match_rules": [{"text": "GrowingIO", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GrowingIO", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "df2e67af-c0d4-4df7-9d14-69126c64b63b", "name": "GrowingIO", "icons": [{"id": "8b3d7437-e474-460e-9c32-bd671c95cf3e", "name": "GrowingIO", "type": "light"}, {"id": "ec3177e5-1039-4601-bcde-180473a05df4", "name": "GrowingIO", "type": "dark"}]}]}, {"id": "9c1f64f8-a5f7-40a6-a998-47e581977ec5", "name": "Mailersend", "tags": [], "issuers": [], "match_rules": [{"text": "Mailersend", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mailersend", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "68ba2620-b4d0-48be-962f-59c720fa92fb", "name": "Mailersend", "icons": [{"id": "5c837a03-9899-4841-a917-d835a9d51346", "name": "Mailersend", "type": "light"}]}]}, {"id": "9c533ef6-9f9a-485c-8809-3bf908c52aa4", "name": "bugcrowd", "tags": [], "issuers": [], "match_rules": [{"text": "bugcrowd", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "bugcrowd", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ec70005a-f837-48ba-9117-0fe03e7bb81f", "name": "bugcrowd", "icons": [{"id": "345d8df1-6332-4505-a503-25f284d4f4a8", "name": "bugcrowd", "type": "light"}]}]}, {"id": "9c5d6c41-d71e-4a0d-84ab-831ad87e2c5a", "name": "Unbounce", "tags": [], "issuers": [], "match_rules": [{"text": "Unbounce", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Unbounce", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "376a6bd3-1449-4244-840d-d08d5c3acaae", "name": "Unbounce", "icons": [{"id": "68200bd2-3f0d-4861-974e-af6b688715cf", "name": "Unbounce", "type": "dark"}, {"id": "9e54ff34-e89d-4cdc-9263-9dfdcb2c6f26", "name": "Unbounce", "type": "light"}]}]}, {"id": "9ca2ce09-7ed9-4c96-88e7-33274eac15bb", "name": "Leaseweb", "tags": [], "issuers": [], "match_rules": [{"text": "Leaseweb", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Leaseweb", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fcdc5ad7-184b-4332-8e15-53315d459519", "name": "Leaseweb", "icons": [{"id": "15dd1caf-9470-4d78-aac7-596558102fc1", "name": "Leaseweb", "type": "light"}]}]}, {"id": "9cefb4c2-714c-4270-acf9-7e48bf8a890c", "name": "Moqups", "tags": [], "issuers": [], "match_rules": [{"text": "Moqups", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Moqups", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e37a7bed-c7e7-40fd-99ef-4d2d214da6a8", "name": "Moqups", "icons": [{"id": "7e834535-aea6-4c10-88fe-8de965787758", "name": "Moqups", "type": "light"}]}]}, {"id": "9d099211-c570-47b6-9d18-e6b72d250cd2", "name": "CoinGate", "tags": [], "issuers": [], "match_rules": [{"text": "CoinGate", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinGate", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4f1c6aab-1f7c-4d17-914c-75998b04bead", "name": "CoinGate", "icons": [{"id": "cddcb531-879b-4c06-8add-9c31ce33ce2b", "name": "CoinGate", "type": "light"}]}]}, {"id": "9d3f105b-e357-4316-98db-0e57999e58a2", "name": "United Nations FCU", "tags": [], "issuers": [], "match_rules": [{"text": "United Nations FCU", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "United Nations FCU", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "United(\\+|\\s|-|_)Nations(\\+|\\s|-|_)FCU", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "United(\\+|\\s|-|_)Nations(\\+|\\s|-|_)FCU", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "2414bf78-cbc4-4c23-b8eb-d39e7661e921", "name": "United Nations FCU", "icons": [{"id": "f48565e1-14bb-4722-9438-8963f4af46d1", "name": "United Nations FCU", "type": "light"}]}]}, {"id": "9da37985-6d4e-4e30-a2cc-449ba401d8cf", "name": "Opera", "tags": [], "issuers": ["auth.opera.com"], "match_rules": [], "icons_collections": [{"id": "7d835694-5335-41c1-985d-eec3a1836fee", "name": "Opera", "icons": [{"id": "d299da6d-c1df-4433-91fa-b92d64355eef", "name": "Opera", "type": "light"}]}]}, {"id": "9dc2a1fd-7a2f-4e9e-8141-16d343f09009", "name": "UKFast", "tags": [], "issuers": [], "match_rules": [{"text": "UKFast", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "UKFast", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "423805d9-a642-4b2f-bf9a-7720449f5a10", "name": "UKFast", "icons": [{"id": "269862a4-83e8-4b85-b7e5-ad2521deb910", "name": "UKFast", "type": "dark"}, {"id": "50e3834e-bc7f-4ce8-b591-df2134979407", "name": "UKFast", "type": "light"}]}]}, {"id": "9debd9d2-1fcf-4912-abdf-ef2f641806a0", "name": "Nominet", "tags": [], "issuers": [], "match_rules": [{"text": "Nominet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nominet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c103676d-9cb5-4d54-86c2-341c2651ed5b", "name": "Nominet", "icons": [{"id": "4c906abc-8f9f-4951-b173-5f0c1f336ff6", "name": "Nominet", "type": "light"}]}]}, {"id": "9df06e77-ccc5-4b90-9486-c5f849807410", "name": "Uniregistry", "tags": [], "issuers": [], "match_rules": [{"text": "Uniregistry", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Uniregistry", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0153a9b6-bd72-4984-82a3-37c7b540b166", "name": "Uniregistry", "icons": [{"id": "60f0c909-ed9a-4180-bdca-810d903c16ec", "name": "Uniregistry", "type": "light"}]}]}, {"id": "9df3f288-9201-477c-9b6f-6a8163f5b980", "name": "Bitbucket", "tags": [], "issuers": ["Bitbucket"], "match_rules": [], "icons_collections": [{"id": "b2b3f344-5cbd-439f-b0c0-cefcad6a21f5", "name": "Bitbucket", "icons": [{"id": "71ed4546-173e-4368-901d-093d89a1b273", "name": "Bitbucket", "type": "light"}]}]}, {"id": "9e13f24a-774d-4d11-b3ea-b688cf3ff82c", "name": "Gamdom", "tags": [], "issuers": ["gamdom.com"], "match_rules": [], "icons_collections": [{"id": "72f23523-5859-418b-8b99-420062258bd7", "name": "Gamdom", "icons": [{"id": "a70142c6-8c82-45a2-93e1-7dc7b67c9a75", "name": "Gamdom", "type": "light"}]}]}, {"id": "9e3718c1-48aa-41fa-b3bb-1650def9b521", "name": "Mapbox", "tags": [], "issuers": [], "match_rules": [{"text": "Mapbox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mapbox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "efe0e629-2549-4692-8e03-d082fc400a38", "name": "Mapbox", "icons": [{"id": "74fe4eb5-f7c5-4226-87b2-e422cabfb5e5", "name": "Mapbox", "type": "light"}, {"id": "bd9363cd-836d-4adf-8e02-2a8551bfb29b", "name": "Mapbox", "type": "dark"}]}]}, {"id": "9e5a263d-8875-49bc-be88-126323aabadd", "name": "Detectify", "tags": [], "issuers": [], "match_rules": [{"text": "Detectify", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Detectify", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "febaa266-330a-41f4-8b19-f6023736db98", "name": "Detectify", "icons": [{"id": "aa4c63ba-bc55-4c8b-8087-9720f761f533", "name": "Detectify", "type": "light"}]}]}, {"id": "9e654a3a-de47-4bfe-8014-1680fce77452", "name": "Hotbit", "tags": [], "issuers": ["HOTBIT"], "match_rules": null, "icons_collections": [{"id": "6bb5522a-8979-4a04-8c72-a59552268a23", "name": "Hotbit", "icons": [{"id": "f3c57c47-0d93-40a3-a41b-fe89b86495c4", "name": "Hotbit", "type": "light"}]}]}, {"id": "9ee1cd91-d80e-4322-b896-a2415dd077b0", "name": "Alchemer", "tags": [], "issuers": [], "match_rules": [{"text": "Alchemer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Alchemer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e9812a04-3ab7-4039-9207-33e52fc5c92b", "name": "Alchemer", "icons": [{"id": "2838c31c-65fe-42ea-bd8d-eaa0517a4efb", "name": "Alchemer", "type": "light"}]}]}, {"id": "9f1bcfe9-a951-4370-afcd-acea35a0243b", "name": "Linode", "tags": [], "issuers": ["Linode"], "match_rules": null, "icons_collections": [{"id": "db619e49-9393-4cf5-808e-354157d98325", "name": "Linode", "icons": [{"id": "cf95f4c2-71c2-4c53-8358-230d3fc90400", "name": "Linode", "type": "light"}]}]}, {"id": "9f4e2bc6-6b23-4e09-92f5-203165ec76df", "name": "TurboTax", "tags": ["intuit"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "1cf1197b-940e-4ab3-8fbb-261b6cb1d464", "name": "TurboTax", "icons": [{"id": "34a41dd8-2265-430b-999c-02673eaa230f", "name": "TurboTax", "type": "light"}]}]}, {"id": "9f8cde87-cdbe-4551-b2de-7829a2fe9f42", "name": "ActiveCampaign", "tags": [], "issuers": [], "match_rules": [{"text": "ActiveCampaign", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ActiveCampaign", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Active Campaign", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Active Campaign", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d77f98d5-d64c-4237-b343-a50219bc5226", "name": "ActiveCampaign", "icons": [{"id": "edfa9f2f-4b7f-4ed1-95b3-e9eff332e283", "name": "ActiveCampaign", "type": "light"}]}]}, {"id": "9fa4fa21-ee4f-4049-97bc-5e43b93ecf86", "name": "Workflowy", "tags": [], "issuers": [], "match_rules": [{"text": "Workflowy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Workflowy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2ef26634-ef90-491e-a548-4e1f52a7fbd5", "name": "Workflowy", "icons": [{"id": "42ff1cc4-53bc-4c9d-911a-2db71dd596ef", "name": "Workflowy", "type": "light"}]}]}, {"id": "a019e22a-fbb3-48b9-b22a-fb076410a5e3", "name": "State Department Federal Credit Union", "tags": ["sdfcu"], "issuers": [], "match_rules": [{"text": "State Department Federal Credit Union", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "State Department Federal Credit Union", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c00d5b8d-8b3b-48a6-830c-798bf722759a", "name": "State Department Federal Credit Union", "icons": [{"id": "8ad8645c-c24f-4f1c-93a1-542ce74ed89e", "name": "State Department Federal Credit Union", "type": "light"}, {"id": "8b3d30ed-bb53-497e-97bf-fba5048f3919", "name": "sdfcu", "type": "dark"}]}]}, {"id": "a069b715-d9cf-4be4-aaf2-c54e87fed81c", "name": "MeshCentral", "tags": [], "issuers": [], "match_rules": [{"text": "MeshCentral.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "fa910f5c-1af2-458b-ad3b-163e9a5dbefb", "name": "MeshCentral", "icons": [{"id": "80a3beb1-0a5c-420e-bac6-96c5a22609f7", "name": "MeshCentral", "type": "light"}]}]}, {"id": "a074d141-f92e-4521-971f-63304a45fedf", "name": "Skiff", "tags": [], "issuers": ["Skiff"], "match_rules": null, "icons_collections": [{"id": "75595ad0-66c7-4bfc-a47d-99c001a4df12", "name": "Skiff", "icons": [{"id": "2f78fde3-3191-4b74-a1fc-d3f89cffbf54", "name": "Skiff", "type": "light"}, {"id": "d97d89ca-8bf5-4d7f-99c0-b017f7544ca3", "name": "Skiff", "type": "dark"}]}]}, {"id": "a11a5e88-2d35-46eb-be74-93fa5a206a17", "name": "Finary", "tags": [], "issuers": [], "match_rules": [{"text": "Finary", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Finary", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ed111ecb-eef4-40c2-9efa-6068957d3a55", "name": "Finary", "icons": [{"id": "746c51b5-f531-488b-8f30-781058d5aea0", "name": "Finary", "type": "light"}]}]}, {"id": "a1478180-6491-4a0b-bb5e-fc2441091de6", "name": "TrueNAS Community", "tags": [], "issuers": ["TrueNAS%20Community", "TrueNAS Community", "TrueNAS+Community"], "match_rules": [], "icons_collections": [{"id": "3a66c19d-d186-45a2-b156-9d4a1aa9581f", "name": "TrueNAS Community", "icons": [{"id": "292af08e-fbf9-4847-8635-1a33f1e652c0", "name": "TrueNAS Community", "type": "light"}]}]}, {"id": "a174bbba-0ff5-4827-acfb-ab661e5a59b9", "name": "Pluralsight", "tags": [], "issuers": ["Pluralsight"], "match_rules": null, "icons_collections": [{"id": "ab7d3bee-5a6b-4c0a-bed5-efcb5e9eb61f", "name": "Pluralsight", "icons": [{"id": "9da1b811-4221-4ce9-8376-81ab6f0079fc", "name": "Pluralsight", "type": "light"}]}]}, {"id": "a17d84e3-2644-4400-a6bb-5a5af797677f", "name": "NAGA", "tags": [], "issuers": [], "match_rules": [{"text": "NAGA", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NAGA", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1b1aefd6-acb6-4a4d-8c71-85cae9896816", "name": "NAGA", "icons": [{"id": "b8b6861d-55c8-4915-9752-4c9f4ee9a5ea", "name": "NAGA", "type": "light"}]}]}, {"id": "a1ab7203-de30-442e-a360-20a2ae8e2f69", "name": "Klaviyo", "tags": [], "issuers": [], "match_rules": [{"text": "Klaviyo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Klaviyo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e5d6b9e5-eec7-44f5-af2c-da4f85b3be2d", "name": "Klaviyo", "icons": [{"id": "1dc48c3d-6c04-470a-a4f5-38665378a316", "name": "Klaviyo", "type": "light"}, {"id": "2cd686a2-0d22-48e5-99f1-34d6d2a36874", "name": "Klaviyo", "type": "dark"}]}]}, {"id": "a1e831a2-8d82-4e55-a3a5-cf12a468fa4a", "name": "Datto", "tags": [], "issuers": [], "match_rules": [{"text": "Datto", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Datto", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1bfdab50-f6b4-40e0-b819-93f876eba5b8", "name": "Datto", "icons": [{"id": "3624d379-25d4-43a0-b106-ed9136fd11ff", "name": "Datto", "type": "light"}]}]}, {"id": "a2987ab4-ac5c-48ce-863c-d3d3d1220fdb", "name": "X", "tags": ["twitter"], "issuers": ["Twitter"], "match_rules": [], "icons_collections": [{"id": "9889f776-434d-46ab-97ee-ef2ad88fe615", "name": "X", "icons": [{"id": "2a71868c-92d3-450d-9ab2-34841eaf7ad6", "name": "x", "type": "light"}, {"id": "d162466b-13cc-4ffb-90f5-26918cee33f9", "name": "x", "type": "dark"}]}]}, {"id": "a36d8440-359e-4dd4-ab13-31f43c77a7fd", "name": "BuiltWith", "tags": [], "issuers": [], "match_rules": [{"text": "BuiltWith", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BuiltWith", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ec674f0f-9069-4b64-97fe-b56efb2b8693", "name": "BuiltWith", "icons": [{"id": "8b277c31-3569-4ff6-8dfc-135826075b84", "name": "BuiltWith", "type": "light"}]}]}, {"id": "a36f94b7-a60a-409c-9e4a-edcbe0d0c2da", "name": "CoinSmart", "tags": [], "issuers": [], "match_rules": [{"text": "CoinSmart", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinSmart", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "165ab569-c5f1-417b-862d-de6d9d1d0429", "name": "CoinSmart", "icons": [{"id": "ebd8f925-02da-4d85-8207-a04054280365", "name": "CoinSmart", "type": "light"}]}]}, {"id": "a3969bda-b6ca-47c3-9512-4be3c7a174e8", "name": "CDN77", "tags": [], "issuers": [], "match_rules": [{"text": "CDN77", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CDN77", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6d430cb8-8891-4504-9e1e-81ce542ac99e", "name": "CDN77", "icons": [{"id": "2acdec45-4531-47d8-a89a-6c8dce3780d6", "name": "CDN77", "type": "dark"}, {"id": "b1c356d3-8666-4f15-8b5b-b5c5257f502a", "name": "CDN77", "type": "light"}]}]}, {"id": "a3c86b49-ff27-4072-bc93-ff7b80d0b380", "name": "Front App", "tags": [], "issuers": [], "match_rules": [{"text": "Front App", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Front App", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "248f1f1f-5270-40a2-950c-7dc4a4a21722", "name": "Front App", "icons": [{"id": "307990f3-d74f-4b0f-8704-12840197ed7b", "name": "Front App", "type": "dark"}, {"id": "cfed65e7-5538-40d3-8ea4-d5492030cf5d", "name": "Front App", "type": "light"}]}]}, {"id": "a3d0f49a-23ed-4c1d-b1a6-47232f4e624d", "name": "Monex", "tags": [], "issuers": [], "match_rules": [{"text": "Monex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Monex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d2c71713-f6f1-4da0-a5f6-f7ad54e8b2a9", "name": "Monex", "icons": [{"id": "3f1eb3e0-fa24-4d33-bef4-b1d1a42b64df", "name": "Monex", "type": "dark"}, {"id": "b104b787-5236-4cb3-b55b-6b89ca303f76", "name": "Monex", "type": "light"}]}]}, {"id": "a3f0564c-f03f-4afa-9443-e75426b3645d", "name": "Lokalise", "tags": [], "issuers": [], "match_rules": [{"text": "Lokalise", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Lokalise", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f977f700-f586-4c5e-8a31-62b940100b96", "name": "Lokalise", "icons": [{"id": "862dfac6-3eb8-41e6-a18c-352dbaba46fd", "name": "Lokalise", "type": "light"}]}]}, {"id": "a42d9f55-c8f8-409d-93a8-d2a8cb23e54d", "name": "RightCapital", "tags": [], "issuers": [], "match_rules": [{"text": "RightCapital", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RightCapital", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "009c2b57-caf0-4dbe-a129-8ad8a9d1df7b", "name": "RightCapital", "icons": [{"id": "25c6f9da-2991-4b7a-b3ae-81f9b3d98d09", "name": "RightCapital", "type": "light"}]}]}, {"id": "a44366c0-42f8-4164-8880-6e1b52634293", "name": "Passbolt", "tags": [], "issuers": [], "match_rules": [{"text": "Passbolt", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0aa806db-7b34-4387-91bd-08d4547b0b4a", "name": "Passbolt", "icons": [{"id": "f176e900-a68c-44db-800e-52433d1631ae", "name": "Passbolt", "type": "light"}]}]}, {"id": "a45a6c25-fc03-48c6-a2d5-c160c3d51f45", "name": "NO-IP", "tags": [], "issuers": ["noip.com"], "match_rules": [], "icons_collections": [{"id": "6bef5540-2e6d-4125-90ac-88905ae42fc3", "name": "NO-IP", "icons": [{"id": "b780b9d9-e6f0-48dd-8fbf-74a3e0a9b3d4", "name": "NO-IP", "type": "light"}]}]}, {"id": "a4a5dbe8-2109-41ee-9fe9-1efec46346b6", "name": "GameMaker", "tags": [], "issuers": [], "match_rules": [{"text": "GameMaker", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GameMaker", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "708b76e7-6713-4c7b-9bc1-ed8bce6360cb", "name": "GameMaker", "icons": [{"id": "9025978a-a59f-4184-a06d-e71779a8ec4a", "name": "GameMaker", "type": "dark"}, {"id": "cbe05ecf-2c2b-4e3e-9227-b7d0992f6988", "name": "GameMaker", "type": "light"}]}]}, {"id": "a5015cda-7770-4cf9-a1b5-afb955ba719d", "name": "Traderie", "tags": [], "issuers": ["Traderie"], "match_rules": null, "icons_collections": [{"id": "5978bde2-1244-481d-9d4c-061c531f9081", "name": "Traderie", "icons": [{"id": "df93c38c-46e3-4780-b02e-5f98c3f32ae6", "name": "Traderie", "type": "light"}]}]}, {"id": "a544dede-602a-4b3b-b8dd-4ff63f49d1ee", "name": "DNSMadeEasy", "tags": [], "issuers": [], "match_rules": [{"text": "dnsmadeeasy.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e8a6ae67-564c-4686-9078-5607b7b7f225", "name": "DNSMadeEasy", "icons": [{"id": "8fd5efe4-2548-4789-b6b1-d1a526b67b82", "name": "DNSMadeEasy", "type": "light"}]}]}, {"id": "a566f7d3-7c9c-4dfb-ab4e-2c40e4517184", "name": "Tilaa", "tags": [], "issuers": [], "match_rules": [{"text": "Tilaa", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tilaa", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2788457b-f9a1-45f3-b453-18de6a706464", "name": "Tilaa", "icons": [{"id": "b8c10d0d-4941-4255-b9c9-b14db0489f17", "name": "Tilaa", "type": "light"}]}]}, {"id": "a5a996f7-8b59-4bb6-8d02-42b547a6f654", "name": "SkySilk", "tags": [], "issuers": ["www.skysilk.com"], "match_rules": null, "icons_collections": [{"id": "ac919310-c2f0-4df2-8159-5f809715dbae", "name": "SkySilk", "icons": [{"id": "9bf8912c-a7e0-4ac9-a8d4-ea9b4c473c25", "name": "SkySilk", "type": "light"}, {"id": "b6b0b2d9-1f77-4d27-b04f-f725636cc3e3", "name": "SkySilk", "type": "dark"}]}]}, {"id": "a5dcc1f5-59be-4fdb-ac4f-23363130f6c6", "name": "Balena", "tags": [], "issuers": [], "match_rules": [{"text": "Balena", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Balena", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0a2fb648-547d-4295-8395-9541530e5fca", "name": "Balena", "icons": [{"id": "bbdc9f84-a3e9-4e62-b3ff-db5a6e934b1c", "name": "Balena", "type": "light"}]}]}, {"id": "a5ed7742-3798-40f6-affc-8bb459af80ea", "name": "Uphold", "tags": [], "issuers": ["Uphold"], "match_rules": [], "icons_collections": [{"id": "4a3bf3c0-68c8-4aa7-809c-c3962ea0c564", "name": "Uphold", "icons": [{"id": "8c80a490-7149-4ea8-8a73-e558f1bafb5b", "name": "Uphold", "type": "light"}]}]}, {"id": "a657edfe-7d07-4183-a409-0e6f7a0e0564", "name": "WePay", "tags": [], "issuers": [], "match_rules": [{"text": "WePay", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "WePay", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d75a84bb-3750-4f77-a889-1de5a743771f", "name": "WePay", "icons": [{"id": "a33bda86-4346-4738-ab4b-b3e2f3054c6e", "name": "WePay", "type": "light"}]}]}, {"id": "a6625835-3c28-42cd-820d-2ebcc08320d0", "name": "Patreon", "tags": [], "issuers": ["Patreon"], "match_rules": [], "icons_collections": [{"id": "2bfe0cfc-b557-4f2d-988c-72015254b671", "name": "Patreon", "icons": [{"id": "ec5d42f4-7286-4f89-bd26-2d772a656d5d", "name": "Patreon", "type": "light"}]}]}, {"id": "a68bc354-0466-4fd8-bcbf-d9998b694867", "name": "LaunchDarkly", "tags": [], "issuers": [], "match_rules": [{"text": "LaunchDarkly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "LaunchDarkly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "03c68d8e-d646-48aa-8d7d-904fcc13c61a", "name": "LaunchDarkly", "icons": [{"id": "8f30db2f-0e96-4788-b229-a8b3d843800b", "name": "LaunchDarkly", "type": "light"}, {"id": "eb1292f3-04a4-492d-8589-d27e6ba2509f", "name": "LaunchDarkly", "type": "dark"}]}]}, {"id": "a691df14-874d-4250-8180-48d05cdb2989", "name": "Heap", "tags": [], "issuers": [], "match_rules": [{"text": "Heap", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Heap", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9973600d-8da5-4a1d-85a3-11928fd80984", "name": "Heap", "icons": [{"id": "87e3b6b6-ad09-47ec-823f-7ca417a029d4", "name": "Heap", "type": "light"}]}]}, {"id": "a69987ef-9334-4bee-adfa-ee94dda00c65", "name": "VPS Server", "tags": [], "issuers": [], "match_rules": [{"text": "VPS Server", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VPS Server", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d82bd671-e134-4c9b-b121-9bcd1005213e", "name": "VPS Server", "icons": [{"id": "c4af5777-fa40-4147-a802-b37a5050b49e", "name": "VPS Server", "type": "light"}]}]}, {"id": "a7354baa-0a57-4003-b0c8-85cd7a19f32f", "name": "Paxos", "tags": [], "issuers": [], "match_rules": [{"text": "Paxos", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Paxos", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f2df791b-6e80-47aa-895d-412748d2a83f", "name": "Paxos", "icons": [{"id": "4e343d3a-0653-43fa-9d6a-77cd61e2ab00", "name": "Paxos", "type": "light"}]}]}, {"id": "a7516a9c-2dbd-4aba-8e9d-50a6d8815c7d", "name": "Fly", "tags": [], "issuers": ["Fly.io"], "match_rules": null, "icons_collections": [{"id": "75d24465-2516-4598-a709-d28bbc17337b", "name": "Fly", "icons": [{"id": "6b40fb75-f2c3-4f6f-b1f1-b62617f241a0", "name": "Fly", "type": "light"}]}]}, {"id": "a7579fcc-ee5e-4b90-85c3-daac271a5cf2", "name": "Cloze", "tags": [], "issuers": [], "match_rules": [{"text": "Cloze", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cloze", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5ac41237-810b-4cc1-8ad2-1c27ad35bb3a", "name": "Cloze", "icons": [{"id": "86a869fd-688b-4799-ac2c-9777ca860e4e", "name": "Cloze", "type": "light"}]}]}, {"id": "a770e137-11ec-4785-924c-2cda2bae0495", "name": "Whimsical", "tags": [], "issuers": [], "match_rules": [{"text": "Whimsical", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Whimsical", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3db07ff5-3a8f-4119-8266-befcd9059469", "name": "Whimsical", "icons": [{"id": "6e589600-c506-4261-9981-8badf5daf94d", "name": "Whimsical", "type": "light"}]}]}, {"id": "a7cf31a1-1b33-4456-8c88-567e100b4b9c", "name": "Nifty", "tags": [], "issuers": [], "match_rules": [{"text": "Nifty", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nifty", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "254f7c6b-3c1a-4237-a231-487022df0dc4", "name": "Nifty", "icons": [{"id": "efb8cd9e-2241-4c63-b84e-7f6eee825bb2", "name": "Nifty", "type": "light"}]}]}, {"id": "a802da64-b4ab-4d0f-8b9b-4c06f8b74c5c", "name": "Star Wars: The Old Republic", "tags": ["swtor"], "issuers": [], "match_rules": [], "icons_collections": [{"id": "4929f295-0bcc-4a10-8150-1b206f2244c9", "name": "Star Wars: The Old Republic", "icons": [{"id": "6aa09296-0ed4-486f-859e-75786ff68eaa", "name": "Star Wars: The Old Republic", "type": "light"}]}]}, {"id": "a85b7921-5da3-43af-ba05-9aac1fc9a6d4", "name": "DX Email PRO", "tags": [], "issuers": ["DX Email PRO"], "match_rules": [], "icons_collections": [{"id": "bebe73c4-8079-42ac-b735-5b991367ca25", "name": "DX Email PRO", "icons": [{"id": "21591868-7f1c-47b5-820f-f2fedf46a2fa", "name": "DX Email PRO", "type": "dark"}, {"id": "c033791a-99e9-45fa-b3ee-42f599436416", "name": "DX Email PRO", "type": "light"}]}]}, {"id": "a87e9253-5ba7-43ef-98a6-5fad3f0920c5", "name": "UK2", "tags": [], "issuers": [], "match_rules": [{"text": "UK2", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "UK2", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5f2c6c03-047f-4029-89bf-bbdc31b6be76", "name": "UK2", "icons": [{"id": "11ed7201-c1f8-4c66-952e-66e068790a99", "name": "UK2", "type": "dark"}, {"id": "cd48ba6a-02f4-4b13-96a5-6d2e27bd9818", "name": "UK2", "type": "light"}]}]}, {"id": "a91236c4-50a2-45ca-ae96-b8d71252a236", "name": "Sophos", "tags": [], "issuers": [], "match_rules": [{"text": "Sophos", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sophos", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bbfaee36-3576-4b48-af93-2bd24166ead0", "name": "Sophos", "icons": [{"id": "e81e852f-ba65-4bda-91f7-fe3eead097a2", "name": "Sophos", "type": "light"}]}]}, {"id": "a916b5e1-627b-4e23-b690-81b33c4b701a", "name": "34SP.com", "tags": [], "issuers": [], "match_rules": [{"text": "34SP", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "34SP", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "87ffdb0e-82aa-4571-99e1-c2506b4267db", "name": "34SP.com", "icons": [{"id": "8c5ae147-d092-445c-828f-abb9c2b8f48a", "name": "34SP.com", "type": "light"}]}]}, {"id": "a9f9deeb-c0db-447c-9316-0bcc5c17d81d", "name": "OKX", "tags": [], "issuers": [], "match_rules": [{"text": "OKX.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "40dd3926-f325-4421-883a-f9051b0dcf3e", "name": "OKX", "icons": [{"id": "63b19be4-9062-43fa-82a4-2f84781370ff", "name": "OKX", "type": "light"}, {"id": "7ff47874-d72c-40a5-9d7b-19523000a60b", "name": "OKX", "type": "dark"}]}]}, {"id": "aa38d4c4-e405-4e28-8cd3-e8b0ecae366f", "name": "NiceHash", "tags": [], "issuers": [], "match_rules": [{"text": "NiceHash", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NiceHash", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d7ff6819-7733-4231-8671-29c3c3b51030", "name": "NiceHash", "icons": [{"id": "1757a974-1d1c-441c-b1e6-0e4e6b67a1c3", "name": "NiceHash", "type": "light"}]}]}, {"id": "aae63726-a3fe-4ba9-abe1-173f1bfb590f", "name": "ImmobilienScout24", "tags": [], "issuers": [], "match_rules": [{"text": "ImmobilienScout24", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ImmobilienScout24", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "93355c73-a8e2-4c4b-9bb4-e15525ec3047", "name": "ImmobilienScout24", "icons": [{"id": "aa7631db-5626-4395-8d19-997cc2582ab7", "name": "ImmobilienScout24", "type": "light"}, {"id": "b5c0449f-e6ee-4a60-9ed1-ccf28207d08e", "name": "ImmobilienScout24", "type": "dark"}]}]}, {"id": "aaf4136b-6489-4e34-ba8d-ba2377bc61ee", "name": "FreeAgent", "tags": [], "issuers": [], "match_rules": [{"text": "FreeAgent", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FreeAgent", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eb504a22-6e98-4b51-93da-e3b9e59f844e", "name": "FreeAgent", "icons": [{"id": "9289b728-cdae-4188-9408-066424174171", "name": "FreeAgent", "type": "light"}]}]}, {"id": "ab5170d5-098b-4d87-a248-64badb66cfb3", "name": "Parsec", "tags": [], "issuers": ["Parsec"], "match_rules": [], "icons_collections": [{"id": "a850b2e8-1f72-4a6e-85f7-9023bc57c75f", "name": "Parsec", "icons": [{"id": "8da2e4f3-643e-41bb-b0e1-c4112a322f51", "name": "Parsec", "type": "light"}]}]}, {"id": "abfd0524-ad3a-455c-9ff1-e2894c68c2e5", "name": "BambooHR", "tags": [], "issuers": [], "match_rules": [{"text": "BambooHR", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BambooHR", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6d47ef7e-bc56-4358-bdac-45a7d4ffce2f", "name": "BambooHR", "icons": [{"id": "bc7bcf5f-813c-40c9-b860-89b64f92c39a", "name": "BambooHR", "type": "light"}]}]}, {"id": "ac38233e-f4b3-47ba-b045-9cf8a6619749", "name": "Olymp Trade", "tags": [], "issuers": ["Olymp Trade"], "match_rules": null, "icons_collections": [{"id": "7bee53fc-f205-4a92-8984-ca0a11a9fe92", "name": "Olymp Trade", "icons": [{"id": "80b27509-c997-4b02-92a3-edd176b7c2c8", "name": " Olymp Trade", "type": "light"}, {"id": "e2546a37-becb-47af-9d65-4e1ef4ac01cc", "name": " Olymp Trade", "type": "dark"}]}]}, {"id": "ac419cfc-9ba0-4e30-9cde-236efd67509b", "name": "OMGServ", "tags": [], "issuers": [], "match_rules": [{"text": "OMGServ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OMGServ", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8f5297c8-1fe6-4dbf-8861-63fe69e63f1e", "name": "OMGServ", "icons": [{"id": "201a209f-ceaa-4f3b-88fa-2f7fa8d5fc30", "name": "OMGServ", "type": "light"}, {"id": "e3887317-89dd-468f-b615-744841442d8d", "name": "OMGServ", "type": "dark"}]}]}, {"id": "ac5c9325-8874-4183-9fcb-f6dcab179dca", "name": "FPT Corporation", "tags": [], "issuers": ["FPT"], "match_rules": null, "icons_collections": [{"id": "7e555152-7186-417f-8fee-573c24fe73e8", "name": "FPT Corporation", "icons": [{"id": "c47431c3-bed9-4fa3-86ed-619c9cb0e250", "name": "FPT Corporation", "type": "dark"}, {"id": "f13050b1-a66c-42e8-be66-47a68d5f2318", "name": "FPT Corporation", "type": "light"}]}]}, {"id": "ac8c167d-82e0-4d49-ab51-7e73b96a7789", "name": "Bitrix24", "tags": [], "issuers": [], "match_rules": [{"text": "Bitrix24", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitrix24", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5b1c87ec-4b04-4649-b09d-f59ce1ac0942", "name": "Bitrix24", "icons": [{"id": "e7810126-a306-4ce7-8f1c-9a11d58c0d61", "name": "Bitrix24", "type": "light"}]}]}, {"id": "acc35462-61b8-4573-b638-24466631d31f", "name": "Wolf.bet", "tags": [], "issuers": [], "match_rules": [{"text": "Wolf.bet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wolf.bet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eaf0b27d-33ab-419c-94a3-810ac5fbac91", "name": "Wolf.bet", "icons": [{"id": "30323a40-b0b4-4c28-9561-28dfeb7332c0", "name": "Wolf.bet", "type": "dark"}, {"id": "b2945220-5041-4265-9de3-7d0ec919551b", "name": "Wolf.bet", "type": "light"}]}]}, {"id": "ad4d1c0e-382d-424e-be1b-7a6f83874e51", "name": "Pushover", "tags": [], "issuers": ["Pushover"], "match_rules": null, "icons_collections": [{"id": "d2b279ed-90ca-4aa4-b02f-45e98aa008f5", "name": "Pushover", "icons": [{"id": "57324839-b333-48ee-9ee1-f464cf303e1c", "name": "Pushover", "type": "light"}]}]}, {"id": "ad6a5114-6205-4478-bbe2-36c63927fcbe", "name": "Rapidgator", "tags": [], "issuers": ["http://rapidgator.net"], "match_rules": null, "icons_collections": [{"id": "54e1c26d-6596-4184-b0de-dd72b4dd52dc", "name": "Rapidgator", "icons": [{"id": "2c850581-7362-4178-9438-bb9154c5a861", "name": "Rapidgator", "type": "light"}]}]}, {"id": "ad743cca-49f6-4910-95a4-f6a0e0533fc2", "name": "IDrive", "tags": [], "issuers": [], "match_rules": [{"text": "IDrive", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "IDrive", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f32c6479-19d4-4a9d-8b37-85dd94629636", "name": "IDrive", "icons": [{"id": "51468b78-1e2d-4783-b3fd-f9418824e2d3", "name": "IDrive", "type": "light"}]}]}, {"id": "adcac151-c9a7-4eac-b65e-28c30cfe9282", "name": "Betfair", "tags": [], "issuers": [], "match_rules": [{"text": "Betfair", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Betfair", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8cc8707f-3e96-4644-826a-56fc3c4dc7f2", "name": "Betfair", "icons": [{"id": "7df668bb-c780-4e83-8d78-bf74432c2ad1", "name": "Betfair", "type": "light"}, {"id": "946d2771-b4c4-49b1-a7dc-a25d42170845", "name": "Betfair", "type": "dark"}]}]}, {"id": "ae853d4d-cf42-43b3-a2a8-4bd61536a9e7", "name": "Adobe", "tags": [], "issuers": ["Adobe ID"], "match_rules": [], "icons_collections": [{"id": "372c450d-4334-4585-bdd9-fe3b8d962d0a", "name": "Adobe", "icons": [{"id": "796e7b5c-2b0f-4f9a-8a24-ceb290909bfe", "name": "Adobe", "type": "light"}]}]}, {"id": "aedeca67-57d4-450d-9737-f7db26fa4e46", "name": "tastyworks", "tags": [], "issuers": ["tastyworks"], "match_rules": [], "icons_collections": [{"id": "6200f337-54c3-4e74-8100-ef405f767460", "name": "tastyworks", "icons": [{"id": "892eb0ca-5a55-4018-92d9-027961f9be59", "name": "tastyworks", "type": "light"}]}]}, {"id": "af40f895-e851-42d3-96e9-8015579dd018", "name": "Supabase", "tags": [], "issuers": ["app.supabase.com"], "match_rules": null, "icons_collections": [{"id": "4d172e2a-2e36-43af-a960-0650aa8c2e4a", "name": "Supabase", "icons": [{"id": "6d01c39f-11df-427e-9544-b0ee2fd88e7c", "name": "Supabase", "type": "light"}]}]}, {"id": "af78a598-da12-473d-8e83-b95cfe0d3384", "name": "Sentry", "tags": [], "issuers": ["Sentry"], "match_rules": [], "icons_collections": [{"id": "e5c1469c-c522-4dbf-973d-5c6f1aa54ea8", "name": "Sentry", "icons": [{"id": "4daa5745-8563-46a9-a86b-06b1dc368b3a", "name": "Sentry", "type": "dark"}, {"id": "b834e082-9c3b-4d3a-adc8-ceab46efd7dc", "name": "Sentry", "type": "light"}]}]}, {"id": "afa70642-ada9-4cb0-b1ba-f530b3d64e07", "name": "Presearch", "tags": [], "issuers": [], "match_rules": [{"text": "Presearch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Presearch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "02b9dc2d-9dbe-4c1c-ba2d-b4236cc6531c", "name": "Presearch", "icons": [{"id": "3c24d083-ca28-422a-9bc3-d413db80c4fa", "name": "Presearch", "type": "light"}, {"id": "8ae02378-cb96-4809-ac5c-309b06959c76", "name": "Presearch", "type": "dark"}]}]}, {"id": "b0616a8c-9fca-4ba3-8f67-13893706032f", "name": "Xbox Live", "tags": [], "issuers": [], "match_rules": [{"text": "xbox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "xbox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3dac779e-08d6-452f-9088-c1c6acd087d7", "name": "Xbox Live", "icons": [{"id": "3457f667-0f2e-487d-b50e-7d998b60755c", "name": "Xbox Live", "type": "light"}]}]}, {"id": "b08a2f47-2883-4190-861d-6042ee86d334", "name": "pCloud", "tags": [], "issuers": ["pCloud"], "match_rules": [], "icons_collections": [{"id": "96003caa-758c-493e-b177-ccd27ec3434a", "name": "pCloud", "icons": [{"id": "39cfaa27-7898-4fde-af77-5e18623b5a2b", "name": "pCloud", "type": "light"}]}]}, {"id": "b0a1e86b-baa4-43f5-b2c7-16dcac2120b5", "name": "Xero", "tags": [], "issuers": ["Xero"], "match_rules": [], "icons_collections": [{"id": "29a5bf72-7ee5-4c0a-a968-3dbdd3e0883f", "name": "Xero", "icons": [{"id": "3d89d56f-bd19-4144-84bb-cf29cba7b04c", "name": "Xero", "type": "light"}]}]}, {"id": "b13f2a89-177e-454c-ab6d-c6eadff138eb", "name": "Gravatar", "tags": [], "issuers": [], "match_rules": [{"text": "Gravatar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Gravatar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1a4e875c-f68e-49a9-a883-d0928169baed", "name": "Gravatar", "icons": [{"id": "f5f54ec9-cdfe-41a5-aafe-bad15e089830", "name": "Gravartar", "type": "light"}]}]}, {"id": "b16f2bad-b094-43e9-8347-e4a02c04a561", "name": "SourceForge", "tags": [], "issuers": ["SourceForge"], "match_rules": [], "icons_collections": [{"id": "98074517-7dc4-48c7-8b60-8ecf53090411", "name": "SourceForge", "icons": [{"id": "66c09e64-9766-4365-9e66-94419d6801cd", "name": "SourceForge", "type": "light"}]}]}, {"id": "b18932d2-4dde-49e7-8f28-6568958e376a", "name": "Coursera", "tags": [], "issuers": ["Coursera"], "match_rules": [], "icons_collections": [{"id": "f9a2cd0d-b4cd-4130-9c06-aa354cbbd221", "name": "Coursera", "icons": [{"id": "0be495e1-1c36-410a-a841-1b9ae2d3fbbb", "name": "Coursera", "type": "light"}]}]}, {"id": "b1a9346e-79d0-419c-9dd8-ddc57540db28", "name": "Accelo", "tags": [], "issuers": [], "match_rules": [{"text": "Accelo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Accelo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aab8250d-309f-4e4c-ab57-772dd7d73c40", "name": "Accelo", "icons": [{"id": "7102a698-c76c-4e5c-9a80-ff4daa5c4e9e", "name": "Accelo", "type": "light"}]}]}, {"id": "b1f353df-9c26-441b-a45e-53773cdc3821", "name": "Hosting Ukraine", "tags": [], "issuers": [], "match_rules": [{"text": "Hosting Ukraine", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hosting Ukraine", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d38ef48e-f3b1-4eea-b308-276e5e7a6547", "name": "Hosting Ukraine", "icons": [{"id": "1d7ea216-bd95-4702-b0f1-ba72cfd04f08", "name": "Hosting Ukraine", "type": "light"}]}]}, {"id": "b22d64e6-535e-421b-8ece-c6f4b5103ed7", "name": "Podio", "tags": [], "issuers": [], "match_rules": [{"text": "Podio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Podio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "88a21d7b-15df-4020-a713-69d880cca58e", "name": "Podio", "icons": [{"id": "89d1cb33-088f-4003-bff9-17b55583dc07", "name": "Podio", "type": "light"}]}]}, {"id": "b235239b-0ff5-4d74-babb-3a76e8dce4eb", "name": "GMX", "tags": [], "issuers": ["GMX"], "match_rules": [], "icons_collections": [{"id": "dcfa66e0-beee-4560-9946-1096a804c913", "name": "GMX", "icons": [{"id": "c6b86814-c06b-4f98-8f85-35d35bfe0963", "name": "GMX", "type": "light"}]}]}, {"id": "b280b90a-8c57-4dbe-8b54-1965ac1935dc", "name": "Cardmarket", "tags": [], "issuers": [], "match_rules": [{"text": "Cardmarket", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cardmarket", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "81ea442e-3146-40a3-9335-bdc5f9511f48", "name": "Cardmarket", "icons": [{"id": "240a44db-d55b-4d54-8d54-0e50d608203c", "name": "Cardmarket", "type": "light"}, {"id": "865248e7-8814-4f41-a4bf-4dad19b5ea24", "name": "Cardmarket", "type": "dark"}]}]}, {"id": "b2b4095d-f3ab-41b9-a1d3-4c7273bbde98", "name": "Microventures", "tags": [], "issuers": [], "match_rules": [{"text": "Microventures", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Microventures", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2c47f539-8fcc-499b-84cb-bc72b823f53c", "name": "Microventures", "icons": [{"id": "93ad1311-be65-4480-b794-4f289303c610", "name": "Microventures", "type": "light"}]}]}, {"id": "b2b6171a-438b-4e24-afa8-c89053a2b09c", "name": "CommunityAmerica", "tags": [], "issuers": [], "match_rules": [{"text": "CommunityAmerica", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CommunityAmerica", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f147d94a-2a3c-4c0c-8e20-5f32ee1a7fa3", "name": "CommunityAmerica", "icons": [{"id": "bed60005-c9f7-47fe-9124-b388376a7e3d", "name": "CommunityAmerica", "type": "light"}]}]}, {"id": "b2f42e95-caf9-40b4-aad1-4f7ec644129c", "name": "section.io", "tags": [], "issuers": [], "match_rules": [{"text": "section.io", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "section.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "94581656-fa9a-42da-9509-bc3c833f9424", "name": "section.io", "icons": [{"id": "39fb2ddd-fd38-4faa-986a-cc6c87c0e0e8", "name": "section.io", "type": "light"}]}]}, {"id": "b3170dcf-ac9e-4808-898a-b29a3e9dea44", "name": "cloudHQ", "tags": [], "issuers": [], "match_rules": [{"text": "cloudHQ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "cloudHQ", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "46afa877-a41a-4e3d-badf-ac749f78048e", "name": "cloudHQ", "icons": [{"id": "5c3e18a0-ab52-494e-b44e-c85490876a8d", "name": "cloudHQ", "type": "dark"}, {"id": "7d2bce29-4789-4c1c-8bf8-8dfa01cda79f", "name": "cloudHQ", "type": "light"}]}]}, {"id": "b34a2be5-9a4d-47a2-b51c-397593b17495", "name": "Tableau", "tags": [], "issuers": [], "match_rules": [{"text": "Tableau", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tableau", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5ed53cfb-6ec8-4301-93a5-c64e8feee5e5", "name": "Tableau", "icons": [{"id": "664948a7-1b35-480d-a90b-9c5d2cf32e57", "name": "Tableau", "type": "light"}]}]}, {"id": "b359a557-2215-4623-8b4d-2975f310b6e5", "name": "namuwiki", "tags": [], "issuers": ["\ub098\ubb34\uc704\ud0a4"], "match_rules": null, "icons_collections": [{"id": "6aeccdae-1c03-4d50-87f4-4e5712dbe772", "name": "namuwiki", "icons": [{"id": "682c0762-a20f-4a24-8fb6-7b6fe7c5b702", "name": "namuwiki", "type": "light"}]}]}, {"id": "b36bbb0f-dc99-4f9f-b934-74c68aa0eb3a", "name": "101domain", "tags": [], "issuers": [], "match_rules": [{"text": "101domain", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "101domain", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "66fc163c-d717-4c18-8277-cfc30291cd5f", "name": "101domain", "icons": [{"id": "ea2c6f10-8fa7-4828-bbb6-c918a5c55024", "name": "101domain", "type": "light"}]}]}, {"id": "b3a39cd8-702a-43b9-809d-0050b7203f0e", "name": "GoSquared", "tags": [], "issuers": [], "match_rules": [{"text": "GoSquared", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GoSquared", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8e3ffaec-9aff-4dee-95ed-2efb063baf84", "name": "GoSquared", "icons": [{"id": "65453160-606a-4358-9096-5a2c593ad3ce", "name": "GoSquared", "type": "light"}, {"id": "d7e1cd4b-e80b-43be-9fcc-8fe68090ae73", "name": "GoSquared", "type": "dark"}]}]}, {"id": "b3ad7c69-d5dc-47e8-82b0-ac607e151329", "name": "Shopify", "tags": [], "issuers": ["Shopify"], "match_rules": [], "icons_collections": [{"id": "ab0b5936-b6df-49f4-9ddc-c898860976de", "name": "Shopify", "icons": [{"id": "400287df-1619-4a32-a7bc-c5e794e1ca8a", "name": "Shopify", "type": "light"}]}]}, {"id": "b3afda8d-5024-43aa-965c-b12a1036aaf5", "name": "DMDC milConnect", "tags": [], "issuers": ["DMDC milConnect"], "match_rules": null, "icons_collections": [{"id": "f37ff2da-f229-406d-bd00-6019cb92097a", "name": "DMDC milConnect", "icons": [{"id": "9af39f68-a125-4cdf-babd-5d1edc59ee1e", "name": "DMDC milConnect", "type": "light"}]}]}, {"id": "b4017db1-4377-42e0-849c-c70ee3d4f699", "name": "Cisco", "tags": [], "issuers": ["id.cisco.com"], "match_rules": [], "icons_collections": [{"id": "0c91f7fd-783a-4f4c-846e-2e57e13727ba", "name": "Cisco", "icons": [{"id": "4ba2ac1d-ed7f-4c24-905e-a243e33b00a1", "name": "Cisco", "type": "dark"}, {"id": "7868fd68-9a73-44b4-9cc5-1b34fc4da924", "name": "Cisco", "type": "light"}]}]}, {"id": "b4417c8f-1e3f-418f-84b7-77874d164c1a", "name": "Findmyshift", "tags": [], "issuers": [], "match_rules": [{"text": "Findmyshift", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Findmyshift", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "51722e7c-193e-46a7-8817-91fb356e425e", "name": "Findmyshift", "icons": [{"id": "4bcadbfc-5152-4404-9f0f-47c35b6642ec", "name": "Findmyshift", "type": "light"}]}]}, {"id": "b47ca012-eda9-44fc-aec8-39a16a2ee928", "name": "Acquia", "tags": [], "issuers": [], "match_rules": [{"text": "Acquia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Acquia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0764b5c9-83c3-4e6c-a053-590ed3379d8c", "name": "Acquia", "icons": [{"id": "3d78efa5-3f6e-45b9-9885-7729f9e35058", "name": "Acquia", "type": "light"}]}]}, {"id": "b4ed9356-1b2d-4a21-ba2b-c96eeb4edcf3", "name": "Trimble", "tags": [], "issuers": [], "match_rules": [{"text": "Trimble Identity", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "6126c800-79b5-40ee-8244-8d14a7d00e97", "name": "Trimble", "icons": [{"id": "5ece0bdd-d907-43ad-91df-7c0faabbe0a3", "name": "Trimble", "type": "light"}, {"id": "79c149d0-c380-4a35-8099-cf8388423ed8", "name": "Trimble", "type": "dark"}]}]}, {"id": "b545e75e-34cf-4186-b246-dc02af28de70", "name": "20i", "tags": [], "issuers": ["my.20i.com"], "match_rules": [], "icons_collections": [{"id": "5befd7ae-b6ae-481b-863e-22783c95a493", "name": "20i", "icons": [{"id": "4486e1e7-037b-44a2-b3ac-977e2c79abf8", "name": "20i", "type": "light"}]}]}, {"id": "b54e1619-84eb-4a39-be76-fa2a4e6be6ff", "name": "elmah.io", "tags": [], "issuers": [], "match_rules": [{"text": "elmah.io", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "elmah.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1cafdf9b-69f8-4638-9ee1-1c67f8feb7e5", "name": "elmah.io", "icons": [{"id": "7b40e29a-fcd1-4aca-8cce-a581638c34e3", "name": "elmah.io", "type": "light"}]}]}, {"id": "b5586d9b-e92d-4557-8b6a-69f79cbe767e", "name": "Pterodactyl", "tags": [], "issuers": [], "match_rules": [{"text": "pterodactyl.io", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "49bb26cb-0b4a-44a7-8ec4-0bb8fa283733", "name": "Pterodactyl", "icons": [{"id": "868e3b18-685f-4332-b791-d31e5cf73afc", "name": "Pterodactyl", "type": "light"}]}]}, {"id": "b5850d68-91cf-40cf-aa7c-74776bd6cac0", "name": "SendOwl", "tags": [], "issuers": [], "match_rules": [{"text": "SendOwl", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SendOwl", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2d6c7fcd-8a93-428a-b6ef-2fbd29837fdf", "name": "SendOwl", "icons": [{"id": "0c76f4ea-c81d-4c44-815e-6414770c8056", "name": "SendOwl", "type": "dark"}, {"id": "df3d05c1-91ff-40fa-8506-85f34c0b390f", "name": "SendOwl", "type": "light"}]}]}, {"id": "b650bb73-fd1c-45ca-bb0d-abfdbff08014", "name": "SAPO Mail", "tags": [], "issuers": [], "match_rules": [{"text": "SAPO Mail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SAPO Mail", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bceac4e9-ae84-4963-8b1b-c8a5013f6c6e", "name": "SAPO Mail", "icons": [{"id": "c9d8a58d-8cb3-402a-a644-41dac8664dd3", "name": "SAPO Mail", "type": "light"}]}]}, {"id": "b6a4766d-d489-4488-9330-041d12f33d60", "name": "Red Hat", "tags": [], "issuers": [], "match_rules": [{"text": "Red Hat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Red Hat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "152fd0e2-7bcc-4d81-a76c-649f5a996036", "name": "Red Hat", "icons": [{"id": "1d2e5ba3-3e8d-4c31-a6f4-977c33e1ba5a", "name": "Red Hat", "type": "light"}]}]}, {"id": "b6b72488-1f7b-431d-afe0-4889496deb70", "name": "Oracle Cloud", "tags": [], "issuers": ["Oracle"], "match_rules": [], "icons_collections": [{"id": "910890db-0da8-4d54-b0a0-d7babf811ade", "name": "Oracle Cloud", "icons": [{"id": "bbb4187d-1818-4c55-81e6-4adc76a5428c", "name": "Oracle Cloud", "type": "light"}]}]}, {"id": "b6e1967d-9ec6-4ba9-ba53-6551e9b5e75a", "name": "Floatplane", "tags": [], "issuers": [], "match_rules": [{"text": "Floatplane", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Floatplane", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c321115e-762e-4d10-b089-07543a418d24", "name": "Floatplane", "icons": [{"id": "b62a1989-8f22-4efc-ae60-035686b6708b", "name": "Floatplane", "type": "light"}]}]}, {"id": "b6e2fdc3-447d-4269-a5d8-83e8905f3eea", "name": "Phemex", "tags": [], "issuers": [], "match_rules": [{"text": "Phemex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Phemex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c348bc60-4ecb-4120-ae73-884335b4d365", "name": "Phemex", "icons": [{"id": "b70a22ea-94c9-4980-9ceb-de3405e5cbf8", "name": "Phemex", "type": "light"}]}]}, {"id": "b6eaada1-807e-4188-b418-df36f8d4a964", "name": "Auth0", "tags": [], "issuers": ["Auth0"], "match_rules": null, "icons_collections": [{"id": "b413e65a-cef9-404d-b1dc-b3bd8e1ae7c3", "name": "Auth0", "icons": [{"id": "e91813e7-daea-4b13-ad94-cad10a0d0167", "name": "Auth0", "type": "light"}]}]}, {"id": "b7100ab6-810c-430a-9fef-7ae03dd6dc94", "name": "Carta", "tags": [], "issuers": [], "match_rules": [{"text": "Carta", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Carta", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "71e7a313-308c-4275-a3b2-9aaff9cd0ed2", "name": "Carta", "icons": [{"id": "79d747d2-d1c2-455a-af02-95d132c459ea", "name": "Carta", "type": "dark"}, {"id": "b72f4ed6-e318-4912-93c6-f84745bccbd9", "name": "Carta", "type": "light"}]}]}, {"id": "b71b2589-efb3-4237-9bf8-22e9826496ed", "name": "QuickFile", "tags": [], "issuers": [], "match_rules": [{"text": "QuickFile", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "QuickFile", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "31413840-9231-42e3-bd3e-ff0ac6ac4458", "name": "QuickFile", "icons": [{"id": "e8ac3f5b-9142-44c8-82c1-38043f68470e", "name": "QuickFile", "type": "light"}]}]}, {"id": "b78bba1b-4733-42bc-a1d5-ca18d53e291f", "name": "Paxful", "tags": [], "issuers": ["Paxful"], "match_rules": [], "icons_collections": [{"id": "ad3e5352-fbda-400d-b891-e21ddec8295e", "name": "Paxful", "icons": [{"id": "57a9c213-dd26-48d2-a40b-0cc896183c80", "name": "Paxful", "type": "light"}, {"id": "76101d52-480c-4d36-8069-7da452135117", "name": "Paxful", "type": "dark"}]}]}, {"id": "b7cb942a-bbd6-4823-b7c9-f0f4cee99c16", "name": "Postman", "tags": [], "issuers": [], "match_rules": [{"text": "Postman", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Postman", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "94d0d578-13d6-4a97-b112-88f2f1b443e3", "name": "Postman", "icons": [{"id": "9f8402c3-5137-4232-8d15-f66c1735a9fd", "name": "Postman", "type": "light"}]}]}, {"id": "b7eb2d59-e9b4-4295-907b-b62c1ad1310c", "name": "Mercury", "tags": [], "issuers": [], "match_rules": [{"text": "Mercury", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mercury", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "64f1d5c7-5abd-4897-bb3e-823990612154", "name": "Mercury", "icons": [{"id": "9aafbb89-63af-4a00-9678-f09568d5ddd9", "name": "Mercury", "type": "light"}, {"id": "f7cdc989-741a-44cf-9529-8b54c8993e86", "name": "Mercury", "type": "dark"}]}]}, {"id": "b807a96b-b1bf-4550-8729-d45068aa1140", "name": "Webflow", "tags": [], "issuers": [], "match_rules": [{"text": "Webflow", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "38a47686-7af2-4b3b-827b-315b6b92eb74", "name": "Webflow", "icons": [{"id": "a535a9a2-e922-4553-bad4-caacd43dd6e2", "name": "Webflow", "type": "light"}]}]}, {"id": "b84dc9ad-9910-44b9-b065-99f06c679706", "name": "Mailgun", "tags": [], "issuers": ["Mailgun"], "match_rules": null, "icons_collections": [{"id": "9e4db15d-4ac6-49fc-a22c-8a0b580bde69", "name": "Mailgun", "icons": [{"id": "d2bdd4d3-7439-4812-93a0-285200179e2d", "name": "Mailgun", "type": "light"}]}]}, {"id": "b872cbd5-dcaa-4a36-83dc-29b273009726", "name": "Coinsquare", "tags": [], "issuers": ["coinsquare.io"], "match_rules": [], "icons_collections": [{"id": "523a8784-c94d-4ac2-bd6f-153b1df3a9e8", "name": "coinsquare.io", "icons": [{"id": "6d07ae60-58e9-4873-8a0e-07c82ea1aa69", "name": "coinsquare.io", "type": "light"}, {"id": "c150b169-e4fb-406d-9524-292e3e96f7af", "name": "coinsquare.io", "type": "dark"}]}]}, {"id": "b8736a08-3188-42dc-9127-14686ea744ce", "name": "Knack", "tags": [], "issuers": [], "match_rules": [{"text": "Knack", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Knack", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d22ad62f-f438-40f8-a304-6aaab48328b7", "name": "Knack", "icons": [{"id": "4825f2c4-b017-43ad-83dc-3e48f6c8458b", "name": "Knack", "type": "light"}]}]}, {"id": "b87a58f6-2641-46f1-978a-95d67d481c20", "name": "STRATO", "tags": [], "issuers": [], "match_rules": [{"text": "STRATO", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "STRATO", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e48a3401-65f3-4509-97a8-938719064ff1", "name": "STRATO", "icons": [{"id": "18f9404c-6112-4d94-937b-b57e88b9d5ee", "name": "STRATO", "type": "light"}]}]}, {"id": "b8869267-e0a5-407c-9b77-8c664896b252", "name": "Windscribe", "tags": [], "issuers": ["Windscribe"], "match_rules": [], "icons_collections": [{"id": "a538ade5-25f9-4d84-b908-39495b168b47", "name": "Windscribe", "icons": [{"id": "4ba857ce-466b-457c-b8df-fa517a79aa69", "name": "Windscribe", "type": "light"}]}]}, {"id": "b88b6be0-9bc9-49ec-9629-41e80728d1c1", "name": "Engine Yard", "tags": [], "issuers": [], "match_rules": [{"text": "Engine Yard", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Engine Yard", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6e34c713-8f1e-43b1-b16e-a161099cf437", "name": "Engine Yard", "icons": [{"id": "d269aafd-038f-432b-abbd-94955a553cae", "name": "Engine Yard", "type": "light"}]}]}, {"id": "b8ccc448-1c97-4d5c-a781-25c48996b00f", "name": "Sony", "tags": ["ps", "PlayStation"], "issuers": ["Sony"], "match_rules": [], "icons_collections": [{"id": "2dc7dd80-1b1e-420b-92ee-838298de29a9", "name": "Sony", "icons": [{"id": "ffca8acd-7a92-40de-a115-ef4c77ab4e2d", "name": "Sony", "type": "light"}]}]}, {"id": "b8e70649-c799-4d52-a8ab-1113fff93a79", "name": "UPM", "tags": ["Universidad", "Polit\u00e9cnica", "Madrid"], "issuers": ["UPM"], "match_rules": [], "icons_collections": [{"id": "4dca89c7-8eb2-40c8-82d5-bf0b12baa820", "name": "UPM", "icons": [{"id": "1e46ff2a-8f4c-45a7-bb20-4b6c78c667c1", "name": "UPM", "type": "light"}]}]}, {"id": "b8eaebbe-141b-4d01-af2f-5f568571bf77", "name": "Clio", "tags": [], "issuers": [], "match_rules": [{"text": "Clio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Clio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "200243cb-ec62-493c-9d38-fd28fd169bf8", "name": "Clio", "icons": [{"id": "7db6a4d3-3cd3-4c31-894b-809c3331ff6a", "name": "Clio", "type": "light"}]}]}, {"id": "b90e407e-b5f8-4ef5-a3e5-cc3e2ddaf2b9", "name": "APNIC", "tags": [], "issuers": [], "match_rules": [{"text": "APNIC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "APNIC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8f68ff8f-35df-4600-8a6d-acf23baa0e74", "name": "APNIC", "icons": [{"id": "81f85c3a-ff0d-4acc-b501-abf81841b1a5", "name": " APNIC", "type": "dark"}, {"id": "a25cb132-cda0-4106-a198-fd2f66e20e84", "name": "APNIC", "type": "light"}]}]}, {"id": "b91a451a-c39d-4660-8852-9571480506f3", "name": "dmarcian", "tags": [], "issuers": [], "match_rules": [{"text": "dmarcian", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "dmarcian", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8a64113c-04a5-4e02-9064-6aec58ffdc17", "name": "dmarcian", "icons": [{"id": "154c2de3-188c-468a-98cb-7900cc30c4b6", "name": "dmarcian", "type": "light"}]}]}, {"id": "b962226b-81d1-4cdb-a1fb-4f3f97bca86d", "name": "eNom", "tags": [], "issuers": [], "match_rules": [{"text": "eNom", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "eNom", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d9e6030c-cab2-4eed-8a8e-d3990c6e77e5", "name": "eNom", "icons": [{"id": "2798be9e-5659-4e28-935d-8bc23042b29e", "name": "eNom", "type": "light"}]}]}, {"id": "b963fbe1-f4ce-42dd-9d54-a978d10908d0", "name": "Anycoin Direct", "tags": [], "issuers": [], "match_rules": [{"text": "Anycoin Direct", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Anycoin Direct", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3d666863-11fa-460a-adf4-5706bca6af49", "name": "Anycoin Direct", "icons": [{"id": "656eefdd-3ae2-4f3a-be35-55d4bd5cae27", "name": "Anycoin Direct", "type": "light"}, {"id": "6ff94e3e-0583-4100-bae3-aa56ede7b02c", "name": "Anycoin Direct", "type": "dark"}]}]}, {"id": "b98e779d-5af4-4c5b-a52b-9bae9404cb00", "name": "Tixte", "tags": [], "issuers": ["otpauth://totp/tixte.com?secret=xxxxx&issuer=Tixte"], "match_rules": null, "icons_collections": [{"id": "8f243e82-97d7-4906-b641-cc00a59576c3", "name": "Tixte", "icons": [{"id": "88c0b966-232c-4614-ad6d-97d1870fed41", "name": "Tixte", "type": "light"}]}]}, {"id": "b9a73622-27a2-4776-8996-c6e43bee3463", "name": "GoTo", "tags": [], "issuers": [], "match_rules": [{"text": "GoTo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GoTo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "50a61314-eaf4-46d9-8deb-2b470266937c", "name": "GoTo", "icons": [{"id": "7b18d98c-6018-40a2-881b-4f5486cbfbba", "name": "GoTo", "type": "light"}, {"id": "b7f5e14f-6333-4bfb-8270-5467c89c8cf3", "name": "GoTo", "type": "dark"}]}]}, {"id": "b9b8ff8f-0588-4281-a199-674f7785a641", "name": "itslearning", "tags": [], "issuers": [], "match_rules": [{"text": "itslearning", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "itslearning", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "073d9ddf-0929-4321-ac75-289628a23174", "name": "itslearning", "icons": [{"id": "cad08c4f-7464-4721-a5c0-eb8c78efa443", "name": "itslearning", "type": "light"}]}]}, {"id": "ba7f09f8-10ea-4158-aaf7-0611c78a229d", "name": "M1 Finance", "tags": [], "issuers": [], "match_rules": [{"text": "M1 Finance", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "M1 Finance", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b81727b2-1515-401e-b1a6-7c3c051a437d", "name": "M1 Finance", "icons": [{"id": "80ce9392-f81c-42a1-b5c2-a815bfa38f34", "name": "M1 Finance", "type": "light"}, {"id": "a6aa6dd4-f1ac-4b88-b29c-ad6460f42686", "name": "M1 Finance", "type": "dark"}]}]}, {"id": "badbfbd1-ca83-4122-a74e-02d1b8f0d923", "name": "Lnk Bio", "tags": [], "issuers": [], "match_rules": [{"text": "Lnk Bio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Lnk Bio", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Lnk(\\+|\\s|-|_)Bio", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Lnk(\\+|\\s|-|_)Bio", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "6704f5a3-075a-4d27-b5cf-228bc34417d3", "name": "Lnk Bio", "icons": [{"id": "a3463f31-64d4-4e99-a88a-cbb91309d7af", "name": "Lnk Bio", "type": "light"}]}]}, {"id": "bb0cf5e7-d66f-442a-9f15-1623cfcfc57e", "name": "cPanel", "tags": ["hosting", "panel"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "ae7eba01-f217-4138-9389-0dbac94a8f7e", "name": "cPanel", "icons": [{"id": "89bfbb1f-97c5-4672-9507-a30512a0dffd", "name": "cPanel", "type": "light"}]}]}, {"id": "bb91944e-949d-4474-a97f-aca5a722fb57", "name": "Chartbeat", "tags": [], "issuers": [], "match_rules": [{"text": "Chartbeat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Chartbeat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "688e5014-c9d6-40d0-8b0d-dcebe407bb13", "name": "Chartbeat", "icons": [{"id": "8a4a291b-d313-4337-9ba7-1bc0c86ef792", "name": "Chartbeat", "type": "light"}]}]}, {"id": "bbb8945e-9e8e-4acc-9ec6-85efbda0af98", "name": "Cloudbet", "tags": [], "issuers": [], "match_rules": [{"text": "Cloudbet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cloudbet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "81e1ca40-eb64-4f45-b7bb-d1ee8486625e", "name": "Cloudbet", "icons": [{"id": "58b10831-0b85-4172-87df-52b101b512d4", "name": "Cloudbet", "type": "light"}]}]}, {"id": "bbf98616-dab0-48d4-859a-0877ad00766a", "name": "TeamViewer", "tags": [], "issuers": ["TeamViewer"], "match_rules": [], "icons_collections": [{"id": "e478edd8-ec9b-4e06-b0f8-1089ce988125", "name": "TeamViewer", "icons": [{"id": "726d138f-a418-4950-b2bd-59bec2b66a36", "name": "TeamViewer", "type": "light"}]}]}, {"id": "bc1329ad-925b-4f51-8ff2-0079975d9bc0", "name": "Kaspersky", "tags": [], "issuers": ["Kaspersky"], "match_rules": [], "icons_collections": [{"id": "7f5d563c-229a-4e2c-bbbd-50c7d27f5bdb", "name": "Kaspersky", "icons": [{"id": "4fbf4cbd-7580-4b1a-9e59-3ec522329b48", "name": "Kaspersky", "type": "light"}, {"id": "f6e42320-6170-4bc2-9fd1-23639c23583a", "name": "Kaspersky", "type": "dark"}]}]}, {"id": "bd49d794-b5d8-44db-ba89-dae49b11bbeb", "name": "Schneider Electric", "tags": [], "issuers": [], "match_rules": [{"text": "Schneider Electric", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Schneider Electric", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aebfcec5-c95d-4d02-900d-7ad4c7121301", "name": "Schneider Electric", "icons": [{"id": "59b142f3-3fd0-48a1-8841-e280d7ebfc38", "name": "Schneider Electric", "type": "light"}]}]}, {"id": "bd59af38-1495-4ca2-99d4-76c1d9787a05", "name": "Sendcloud", "tags": [], "issuers": [], "match_rules": [{"text": "Sendcloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sendcloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0c38bb1a-1d23-441e-abdb-abd4f46a5dea", "name": "Sendcloud", "icons": [{"id": "85f749cd-7773-41a6-ba94-1be3c46ceffe", "name": "Sendcloud", "type": "light"}]}]}, {"id": "bd82b421-51cf-436f-86e9-b9c98487f439", "name": "Filen", "tags": [], "issuers": ["Filen"], "match_rules": null, "icons_collections": [{"id": "5c7adbb7-3438-424b-a7d9-f82b7360516c", "name": "Filen", "icons": [{"id": "8f60f1d9-cd4b-4213-90fe-3d8d32541075", "name": "Filen", "type": "light"}, {"id": "dbccab97-41e7-4c6e-86e8-1b24c213b22f", "name": "Filen", "type": "dark"}]}]}, {"id": "bd847a68-44f4-4ccf-b4b6-0406eeabc753", "name": "Intuit TurboTax", "tags": [], "issuers": [], "match_rules": [{"text": "Intuit TurboTax", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Intuit TurboTax", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cf952bde-eabf-4334-852e-11e3861f0b4e", "name": "Intuit TurboTax", "icons": [{"id": "985aac14-34ae-47f7-8094-9fe591969a4b", "name": "Intuit TurboTax", "type": "light"}]}]}, {"id": "bdf9b780-cced-4156-8bff-c63315bdb3ed", "name": "Planio", "tags": [], "issuers": [], "match_rules": [{"text": "Planio", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Planio", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d781e3e5-0b60-4471-83c6-95e04e741c61", "name": "Planio", "icons": [{"id": "512ce74b-bbc8-47b4-87c3-f94f9b074dee", "name": "Planio", "type": "light"}]}]}, {"id": "be075048-b23d-4226-9fcf-2ff573afb7e1", "name": "Betvictor", "tags": [], "issuers": [], "match_rules": [{"text": "Betvictor", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Betvictor", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0cd28760-7717-4152-8786-7470f1476b9c", "name": "Betvictor", "icons": [{"id": "932d342c-e669-4e7b-b828-dc1d41cba579", "name": "Betvictor", "type": "light"}]}]}, {"id": "be114956-58bb-4909-8668-44e728554556", "name": "NextDNS", "tags": [], "issuers": ["NextDNS"], "match_rules": [], "icons_collections": [{"id": "88e25804-b257-416a-8cdc-68f71cae5f32", "name": "NextDNS", "icons": [{"id": "c8256b5f-bd3f-415b-8213-1c5401cb5f29", "name": "NextDNS", "type": "light"}]}]}, {"id": "be16e104-bb24-4683-9c7f-7a38e0fea894", "name": "Back4App", "tags": [], "issuers": [], "match_rules": [{"text": "Back4App", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Back4App", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "05c03baa-593d-4e28-95fc-cdd2402ff824", "name": "Back4App", "icons": [{"id": "7baaea73-c411-4597-8175-c85b5d2753a5", "name": "Back4App", "type": "light"}]}]}, {"id": "be30d50c-3f36-47cb-a290-1d8bf057f9f7", "name": "Emplifi", "tags": [], "issuers": [], "match_rules": [{"text": "Emplifi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Emplifi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "297c0a36-5202-49d0-846a-c86f3057ca94", "name": "Emplifi", "icons": [{"id": "482be808-0016-4175-af5e-c372dcb88d87", "name": "Emplifi", "type": "light"}]}]}, {"id": "be5b180f-67ba-487b-9166-a4e0605c1331", "name": "Domino Data Lab", "tags": [], "issuers": [], "match_rules": [{"text": "Domino Data Lab", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Domino Data Lab", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7551730e-2315-45a3-a694-02db3f5df261", "name": "Domino Data Lab", "icons": [{"id": "4f5711b5-7ade-4412-a613-e366ba575661", "name": "Domino Data Lab", "type": "light"}]}]}, {"id": "be87d55c-5786-41a2-8851-84ba49c7d4d0", "name": "Deutsche Bahn", "tags": [], "issuers": ["Deutsche Bahn"], "match_rules": null, "icons_collections": [{"id": "2da66dfc-d49d-443c-9322-57ae6c623007", "name": "DB", "icons": [{"id": "a6971039-20f4-4234-a902-b80e9c580f50", "name": "DB", "type": "light"}]}]}, {"id": "be900c77-fe67-4f9b-805b-10c899125fa5", "name": "Microsoft", "tags": ["ms"], "issuers": ["Microsoft"], "match_rules": [], "icons_collections": [{"id": "5336cd6b-2971-4a3f-bdd9-7d32ea2abe27", "name": "Microsoft", "icons": [{"id": "6f13e903-ea3f-4f08-bce7-b1d142d69149", "name": "Microsoft", "type": "light"}]}]}, {"id": "be94105a-d323-4565-983e-de4760b9fe98", "name": "Glasswire", "tags": [], "issuers": [], "match_rules": [{"text": "Glasswire", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a3b6db73-ed50-4061-bc72-735a0b06f147", "name": "Glasswire", "icons": [{"id": "23087d98-4fa7-4ce5-9a48-b83d63bac1b6", "name": "Glasswire", "type": "light"}]}]}, {"id": "bea00452-571b-4b75-83cb-be9f79f8dcc6", "name": "ClickUp", "tags": [], "issuers": ["ClickUp"], "match_rules": null, "icons_collections": [{"id": "3f75fd3e-be90-44fa-9620-a2ba8c158557", "name": "ClickUp", "icons": [{"id": "4b315879-fa9f-40d7-8b47-e4bd1d5e367b", "name": "ClickUp", "type": "light"}]}]}, {"id": "bf211001-f2a2-4385-b857-9740b1edc85a", "name": "WitherHosting", "tags": [], "issuers": ["WitherHosting"], "match_rules": null, "icons_collections": [{"id": "2d0e42e8-e91d-4983-8364-d005429d57ad", "name": "WitherHosting", "icons": [{"id": "0dc68b55-50ce-49c5-bb76-1e2a857854c8", "name": "WitherHosting", "type": "light"}, {"id": "78552165-4cf8-42bd-be9c-8c7a4b83ba62", "name": "WitherHosting", "type": "dark"}]}]}, {"id": "bf4146b3-0f39-4ade-b1be-5e7737c45480", "name": "HT-Hosting", "tags": [], "issuers": [], "match_rules": [{"text": "HT-Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HT-Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b3682443-d203-4acc-ae08-8ff904d2d57d", "name": "HT-Hosting", "icons": [{"id": "cf0382f4-cc04-46ae-9b57-d024dd7c246f", "name": "HT-Hosting", "type": "light"}]}]}, {"id": "bf97ae7d-40c8-4ecb-9ca3-11eb3c0cdd13", "name": "Sellpass", "tags": [], "issuers": [], "match_rules": [{"text": "Sellpass", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sellpass", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "327b7a46-8fd6-4d54-addf-9d0ec84daa5c", "name": "Sellpass", "icons": [{"id": "8083df03-fa0b-47ea-96e4-4851445c3702", "name": "Sellpass", "type": "light"}]}]}, {"id": "bfeb9527-09c0-4d93-8b36-ddf0f634c3c1", "name": "Mist", "tags": [], "issuers": [], "match_rules": [{"text": "Mist", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mist", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4417b65e-35f8-48a7-83d4-0c6ae4391d3c", "name": "Mist", "icons": [{"id": "604c6993-4746-48b8-8246-368737101296", "name": "Mist", "type": "light"}]}]}, {"id": "bfec37d5-6a06-4119-9db8-417f4026dacb", "name": "StickyPassword", "tags": [], "issuers": [], "match_rules": [{"text": "StickyPassword", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "StickyPassword", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0a1fde94-c899-4faa-b086-d039c2b2a178", "name": "StickyPassword", "icons": [{"id": "20dbeedb-e854-4145-9dd5-5a36a97f6cd0", "name": "StickyPassword", "type": "light"}]}]}, {"id": "c018a2a1-36cf-46a1-81f5-d8d4b72ceef1", "name": "Bell", "tags": [], "issuers": [], "match_rules": [{"text": "Bell", "field": "issuer", "matcher": "starts_with", "ignore_case": true}, {"text": "Bell", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "8c8de7b1-ee0d-44cf-a607-dfc37ca1314b", "name": "Bell", "icons": [{"id": "9e035913-e8f9-4fd3-adb1-e1296ad9bcb1", "name": "Bell", "type": "light"}, {"id": "e8ecde4d-12fc-41b8-801f-e3fe8064ab68", "name": "Bell", "type": "dark"}]}]}, {"id": "c0d4f3de-2049-4a68-b9bf-a42e70786806", "name": "Anycoin", "tags": ["anycoin.cz"], "issuers": [], "match_rules": [{"text": "Anycoin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Anycoin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6618c73d-3452-4723-9e56-29e294fb9354", "name": "Anycoin", "icons": [{"id": "da2a3ef2-0514-41e0-ac7c-56ed10879b7a", "name": "Anycoin", "type": "light"}]}]}, {"id": "c103519f-e4fe-4c5a-9c75-e55b42d94a17", "name": "AnonAddy", "tags": [], "issuers": ["AnonAddy"], "match_rules": null, "icons_collections": [{"id": "165b0b2b-ac87-40a6-af8e-f8885ef57bb5", "name": "AnonAddy", "icons": [{"id": "99dc6207-2a6a-4d75-b4f6-fae9ee81639c", "name": "AnonAddy", "type": "light"}]}]}, {"id": "c1098c10-4c25-4aec-8c5b-aab56989b3b9", "name": "Missive App", "tags": [], "issuers": [], "match_rules": [{"text": "Missive App", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Missive App", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "55753574-a137-4327-ba45-047daf8a9a61", "name": "Missive App", "icons": [{"id": "c1be45aa-3a3f-47fa-8c90-a9f259cd651c", "name": "Missive App", "type": "dark"}, {"id": "fe7f22f4-cd5d-47ab-a112-a83a421d5007", "name": "Missive App", "type": "light"}]}]}, {"id": "c112bf95-6093-493e-8ed8-3cd700a6209a", "name": "CoinField", "tags": [], "issuers": [], "match_rules": [{"text": "CoinField", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinField", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "83bb02cc-d58e-43cf-b130-f25103d49810", "name": "CoinField", "icons": [{"id": "6b508312-34aa-4406-a7b8-cb17e0089ae6", "name": "CoinField", "type": "dark"}, {"id": "e03dda9f-865a-4d04-99da-59854fab9d2e", "name": "CoinField", "type": "light"}]}]}, {"id": "c1313346-0d77-4dc7-a67a-2c4136b4f4de", "name": "Neolo", "tags": [], "issuers": [], "match_rules": [{"text": "Neolo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Neolo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "acb3b7c1-612a-4913-a407-8a78832694c3", "name": "Neolo", "icons": [{"id": "c3ad780a-dc34-418d-b9d0-390da41d246e", "name": "Neolo", "type": "light"}]}]}, {"id": "c1a8aa2e-5d5c-4f1f-8c1d-15277d75cbd8", "name": "Bugsnag", "tags": [], "issuers": [], "match_rules": [{"text": "Bugsnag", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bugsnag", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8836e46d-263e-4d37-bdc9-dc92e8a4ae87", "name": "Bugsnag", "icons": [{"id": "a80ef394-1f77-4562-a6ff-db567a47e917", "name": "Bugsnag", "type": "light"}]}]}, {"id": "c1ca5186-2e6d-4d70-b8c9-a5410b791664", "name": "Stake.com", "tags": [], "issuers": [], "match_rules": [{"text": "Stake.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "5430258c-8064-46bb-9adf-9a36e276407b", "name": "Stake.com", "icons": [{"id": "7c665366-cfc1-4554-a50c-dcdf72743a1e", "name": "Stake", "type": "light"}, {"id": "fc17da47-5439-4452-8df2-875ff991778d", "name": "Stake", "type": "dark"}]}]}, {"id": "c1eb08ce-519a-4bbb-813e-6342a981966e", "name": "Seafile", "tags": [], "issuers": ["Seafile"], "match_rules": null, "icons_collections": [{"id": "09763593-1c48-4ab5-a400-a3f774a2f420", "name": "Seafile", "icons": [{"id": "1c9644b1-fc33-400e-a38e-cdb755256f21", "name": "Seafile", "type": "light"}]}]}, {"id": "c21e91ed-6378-4341-9668-064d76f4b1bd", "name": "Canva", "tags": [], "issuers": ["Canva"], "match_rules": null, "icons_collections": [{"id": "bdea153c-20d7-4844-9c97-d694ee191353", "name": "Canva", "icons": [{"id": "4cdd7194-7d0f-4f37-b64a-f42b108ad8b7", "name": "Canva", "type": "dark"}, {"id": "91b91042-14a4-4a5e-8925-0bed250776d7", "name": "Canva", "type": "light"}]}]}, {"id": "c23036d4-5065-4acd-9285-9bf53cc2869a", "name": "ConnectWise Control (ScreenConnect)", "tags": [], "issuers": [], "match_rules": [{"text": "ConnectWise Control (ScreenConnect)", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ConnectWise Control (ScreenConnect)", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e1cae46b-2a0f-47b5-9750-73e3daa333d4", "name": "ConnectWise Control (ScreenConnect)", "icons": [{"id": "d0d1a71d-4f33-4365-be5c-85612319c0fe", "name": "ConnectWise Control (ScreenConnect)", "type": "light"}]}]}, {"id": "c2a740ba-8823-4add-9f60-3f87797251f0", "name": "Wealthsimple", "tags": [], "issuers": ["Wealthsimple"], "match_rules": null, "icons_collections": [{"id": "699d4dd1-5144-49e6-9c77-bf065e7bcd14", "name": "Wealthsimple", "icons": [{"id": "10909efb-986e-4c81-b64e-b7c242ecd3a7", "name": "Wealthsimple", "type": "light"}, {"id": "78a660a2-d2d1-42db-8cec-1d0288621bd0", "name": "Wealthsimple", "type": "dark"}]}]}, {"id": "c2b17b60-31f1-489b-b3df-3f7b1f750d6d", "name": "Uptime Kuma", "tags": [], "issuers": [], "match_rules": [{"text": "Uptime%20Kuma", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Uptime Kuma", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e40b5b59-34f0-406a-87d8-3e2e27f79b2a", "name": "Uptime Kuma", "icons": [{"id": "ef0be002-1043-469c-a22b-bab12caf3967", "name": "Uptime Kuma", "type": "light"}]}]}, {"id": "c2c620fa-4c2d-4a8b-a2ab-f36296e75eb8", "name": "Poli Systems", "tags": [], "issuers": [], "match_rules": [{"text": "Poli Systems", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Poli Systems", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d63ded88-e3c9-48ac-a7f9-c7e1d2a433b0", "name": "Poli Systems", "icons": [{"id": "dc04c153-d436-4f97-9a92-3ce187d304f1", "name": "Poli Systems", "type": "light"}]}]}, {"id": "c2e5b8ea-e5f2-48c9-8e9f-452622a3df9a", "name": "MEXC", "tags": [], "issuers": ["MEXC"], "match_rules": null, "icons_collections": [{"id": "df2fe8d6-4742-4903-a7da-e4c86d990b43", "name": "MEXC", "icons": [{"id": "e000f79f-65c6-4f86-817c-674cab1066de", "name": "MEXC", "type": "light"}]}]}, {"id": "c3b53c9a-f0ad-4fed-b34f-3857cf11dfa0", "name": "Exact Online", "tags": [], "issuers": [], "match_rules": [{"text": "Exact Online", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Exact Online", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4ebfcfe7-dbe5-4948-b791-82e9eb42e03b", "name": "Exact Online", "icons": [{"id": "65ea9a84-b792-47ea-8209-687fc4ddd825", "name": "Exact Online", "type": "light"}]}]}, {"id": "c3cf1e8a-8f6e-4009-8f19-5677f22899c0", "name": "Changelly", "tags": [], "issuers": [], "match_rules": [{"text": "Changelly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Changelly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4629b020-3982-4454-916d-4a465a09c9aa", "name": "Changelly", "icons": [{"id": "19de07f4-c82b-4ac4-a644-5efdf1af8553", "name": "Changelly", "type": "light"}]}]}, {"id": "c3cf42df-5f28-4812-a954-7364473d5723", "name": "VMware", "tags": [], "issuers": ["VMware+Cloud+Services", "VMware Cloud Services"], "match_rules": null, "icons_collections": [{"id": "91779097-9ee2-4e9d-a208-20d3d01d1643", "name": "VMware", "icons": [{"id": "522719dd-9fd6-4829-b5d0-828bee041d96", "name": "VMware", "type": "light"}]}]}, {"id": "c3f5925b-225a-4232-becf-66cb4c9b04db", "name": "Notion", "tags": [], "issuers": ["Notion"], "match_rules": null, "icons_collections": [{"id": "6656fdcf-5aa8-4c26-bfeb-ada408e764e7", "name": "Notion", "icons": [{"id": "5be68e42-d158-4dd8-b879-74fa021a7ad5", "name": "Notion", "type": "light"}, {"id": "d4f89ee8-f5b4-426b-9918-256149e94056", "name": "Notion", "type": "dark"}]}]}, {"id": "c4504792-db36-4ab6-9119-a3ee097a4a94", "name": "Con Edison", "tags": [], "issuers": [], "match_rules": [{"text": "Con Edison", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Con Edison", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0eb466b7-a2be-4158-9a41-cc35691db480", "name": "Con Edison", "icons": [{"id": "179ce1cb-a186-4466-8a94-bc3c873186f0", "name": "Con Edison", "type": "light"}]}]}, {"id": "c4a11c0e-f261-48fe-969b-5646d7eaba0f", "name": "AltCoinTrader", "tags": [], "issuers": [], "match_rules": [{"text": "AltCoinTrader", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AltCoinTrader", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4bdd875e-e88b-46ff-9455-94f235f2a7ca", "name": "AltCoinTrader", "icons": [{"id": "7d568755-77d4-40aa-ab63-03282f03d9ac", "name": "AltCoinTrader", "type": "light"}]}]}, {"id": "c4a41a3c-741e-4c57-a59b-1e56d6bb202d", "name": "Betterment", "tags": [], "issuers": [], "match_rules": [{"text": "Betterment", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Betterment", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7560daaa-266a-42fd-999a-d3c039f5e100", "name": "Betterment", "icons": [{"id": "f7e5d74b-0337-4112-aba5-4d75963c5b12", "name": "Betterment", "type": "light"}]}]}, {"id": "c4c182d1-88d7-4c0a-bc67-1aeb28fa21db", "name": "coindeal.io", "tags": [], "issuers": ["coindeal.io"], "match_rules": [], "icons_collections": [{"id": "163316f8-fb4a-45c4-a349-1187e51bfe72", "name": "coindeal.io", "icons": [{"id": "0afb5eb7-9f44-4a00-89e2-502e213f6606", "name": "coindeal.io", "type": "light"}, {"id": "70eeb019-0bda-4199-b51b-00aa82536780", "name": "coindeal.io", "type": "dark"}]}]}, {"id": "c5dad234-589d-451c-9bf2-27ebcf7ab5f9", "name": "Purelymail", "tags": [], "issuers": [], "match_rules": [{"text": "Purelymail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Purelymail", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "c7266099-cbd6-4ebf-bf20-a882c3350af9", "name": "Purelymail", "icons": [{"id": "9aa6b11f-ca1c-4559-ae2e-d1299be1aed3", "name": "Purelymail", "type": "light"}]}]}, {"id": "c6055dca-eeaa-440b-809c-b038c42b5065", "name": "Drift", "tags": [], "issuers": [], "match_rules": [{"text": "Drift", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Drift", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "441a0f17-b8e3-4165-819c-cd17473ba6e0", "name": "Drift", "icons": [{"id": "05c7fcd5-8470-4deb-9f30-5c30f4609b33", "name": "Drift", "type": "light"}]}]}, {"id": "c6256792-d4da-4954-a3e7-2a0fcb4f7d2d", "name": "BullionStar", "tags": [], "issuers": [], "match_rules": [{"text": "BullionStar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BullionStar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d3ce67d9-4325-45ca-afb6-2f0c4a788972", "name": "BullionStar", "icons": [{"id": "9a040395-6f10-4a96-b4ad-4e58053733e1", "name": "BullionStar", "type": "light"}]}]}, {"id": "c62a918a-a48f-46bd-a5fe-3e5024fb3332", "name": "Labcorp OnDemand", "tags": [], "issuers": [], "match_rules": [{"text": "Labcorp OnDemand", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Labcorp OnDemand", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "16fc5678-180e-4e64-9398-842242382acf", "name": "Labcorp OnDemand", "icons": [{"id": "390b55ed-021b-4564-9e67-11a0eaa129c8", "name": "Labcorp OnDemand", "type": "light"}]}]}, {"id": "c62e1ea9-e2d8-4742-a6a9-d9b3527a068a", "name": "15Five", "tags": [], "issuers": [], "match_rules": [{"text": "15Five", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "15Five", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "978354b2-af33-440d-bc4d-97d95024ed31", "name": "15Five", "icons": [{"id": "64b222af-de3e-4fea-9090-9ae4e00a2ca5", "name": "15Five", "type": "light"}]}]}, {"id": "c63760a0-5f64-4b99-b8bd-cd08d4266d86", "name": "Federal Student Aid", "tags": [], "issuers": [], "match_rules": [{"text": "Federal Student Aid", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Federal Student Aid", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c69c5152-2b51-43ef-b881-d3e50c599bb6", "name": "Federal Student Aid", "icons": [{"id": "ef6a2628-d333-46f0-9003-dcdaff2ad41b", "name": "Federal Student Aid", "type": "light"}]}]}, {"id": "c6441103-fa31-45f6-bc7b-76e3d20a73b1", "name": "Mailo", "tags": [], "issuers": [], "match_rules": [{"text": "Mailo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mailo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fbd7637d-c1a3-454a-8e06-b7cc5f04201c", "name": "Mailo", "icons": [{"id": "3c607c03-6f5f-4067-ab1c-1a3391a45732", "name": "Mailo", "type": "light"}]}]}, {"id": "c679176d-d306-4a06-876a-3334b47d3975", "name": "AnyDesk", "tags": [], "issuers": ["anydesk.com"], "match_rules": [], "icons_collections": [{"id": "5fb9027d-e589-43ab-88a7-13f39799ef94", "name": "AnyDesk", "icons": [{"id": "dcfefd8c-18e3-4eca-a8a3-c6415f734160", "name": "AnyDesk", "type": "light"}]}]}, {"id": "c6a0e139-d7b3-4351-8741-cfdd296b5802", "name": "Bitcoin Meester", "tags": [], "issuers": ["Bitcoinmeester"], "match_rules": [], "icons_collections": [{"id": "4e2c56b1-02ce-4756-8569-ef872d405874", "name": "Bitcoin Meester", "icons": [{"id": "dd4e5b0f-d693-47ea-9f85-ea5b81ab33c9", "name": "Bitcoin Meester", "type": "light"}]}]}, {"id": "c6a5b0b8-7c7f-4469-a5b2-4e97f4b93eb1", "name": "XDA", "tags": [], "issuers": ["XDA Forums"], "match_rules": [], "icons_collections": [{"id": "8250908f-6fd4-4fdf-9250-1fb45e27b595", "name": "XDA", "icons": [{"id": "58f1860a-ea8d-4f26-8a1f-7ae713384d11", "name": "XDA", "type": "light"}]}]}, {"id": "c6ba0b94-7535-4ea3-b490-9db5513f0a3a", "name": "LBMG", "tags": ["lbmg.ch"], "issuers": [], "match_rules": [{"text": "lbmg", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "70d6c5d3-7184-486b-96b1-d3b35e038209", "name": "LBMG", "icons": [{"id": "2e76a530-6802-40a2-805a-f2feb7675a35", "name": "lbmg", "type": "light"}, {"id": "af64fb04-462c-41da-8c4f-2aa1e1a777a1", "name": "lbmg", "type": "dark"}]}]}, {"id": "c6c60489-75b0-4ee8-984e-b1569397b209", "name": "EVE Online", "tags": [], "issuers": [], "match_rules": [{"text": "EVE Online", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "EVE Online", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a45b3994-fd70-44aa-9a94-fe72b24b0015", "name": "EVE Online", "icons": [{"id": "62e3ddbf-5afc-4c91-9500-90bbc7937fc2", "name": "EVE Online", "type": "dark"}, {"id": "f65a7a2b-0619-4ccf-9e9a-f5cea01eeedc", "name": "EVE Online", "type": "light"}]}]}, {"id": "c6f1fec4-2325-4a2f-be73-1d4c269cf840", "name": "Qantas", "tags": [], "issuers": [], "match_rules": [{"text": "Qantas", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Qantas", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8ccba7f1-0372-4a0a-95c4-ad92479e3564", "name": "Qantas", "icons": [{"id": "60cc02a7-ca17-4cfe-8b0b-73d1539a91a2", "name": "Qantas", "type": "light"}]}]}, {"id": "c748e680-902e-42ce-ab81-251c01759c52", "name": "Wealthify", "tags": [], "issuers": ["Wealthify"], "match_rules": null, "icons_collections": [{"id": "67628c98-1593-453f-b0d8-e0ded0f9947b", "name": "Wealthify", "icons": [{"id": "690a0722-d36e-47f7-b155-325d84038d04", "name": "Wealthify", "type": "light"}]}]}, {"id": "c755b82b-bb1d-4dca-92ba-15ea4e11b38c", "name": "KnowBe4", "tags": [], "issuers": [], "match_rules": [{"text": "KnowBe4", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "KnowBe4", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f6faceda-7068-474b-9783-a04f15bc3c34", "name": "KnowBe4", "icons": [{"id": "2a17ff9f-f15e-42c1-aca8-3b13aad7aa89", "name": "KnowBe4", "type": "light"}]}]}, {"id": "c755e985-7434-4272-971b-a0af16d4bf11", "name": "Wiki.js", "tags": [], "issuers": ["Wikijs"], "match_rules": [{"text": "wikijs", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "wiki.js", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0f97b5f0-62c7-4de2-8b74-5e9abc62c860", "name": "Wiki.js", "icons": [{"id": "82c01974-d406-46e9-a39a-66a3600805a9", "name": "Wiki.js", "type": "light"}]}]}, {"id": "c7a4a839-06b1-4d5f-90dc-83d7f59b1078", "name": "FaucetPay", "tags": [], "issuers": [], "match_rules": [{"text": "FaucetPay", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FaucetPay", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ae8f94ed-4e9a-49ed-a230-72b2089e676d", "name": "FaucetPay", "icons": [{"id": "55642c2f-d359-4562-b3db-cce0f3ef6850", "name": "FaucetPay", "type": "light"}]}]}, {"id": "c7a9cc0a-c382-40f4-ace1-f0c8881f1342", "name": "Lobsters", "tags": [], "issuers": [], "match_rules": [{"text": "Lobsters", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Lobsters", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0a8c0a5a-ab5e-43bc-90ac-4f43a598f8ee", "name": "Lobsters", "icons": [{"id": "35566bb2-0066-4dd2-8812-7c3cd1cd2428", "name": "Lobsters", "type": "light"}]}]}, {"id": "c8617020-8fdd-4b51-8966-e932de5c6eda", "name": "Wrike", "tags": [], "issuers": [], "match_rules": [{"text": "Wrike", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wrike", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e389f4a5-9ecc-4252-ae2e-d8f13c5071c1", "name": "Wrike", "icons": [{"id": "13c18f70-40fa-41f2-9820-7f46105239ef", "name": "Wrike", "type": "light"}]}]}, {"id": "c8b4ebd7-47f9-4d53-8f9e-30ce9a89cf89", "name": "BingX", "tags": [], "issuers": [], "match_rules": [{"text": "BingX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BingX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "67a0493d-698c-4a57-a83d-6b6fc2e23ee5", "name": "BingX", "icons": [{"id": "4766e349-85f1-49a9-9ee7-dfbdb6b87c70", "name": "BingX", "type": "light"}]}]}, {"id": "c8ebf624-c4d2-4e6a-aeac-fc235494ab92", "name": "Cloudflare", "tags": [], "issuers": ["Cloudflare"], "match_rules": [], "icons_collections": [{"id": "7e40ba1b-12c4-46b5-b74d-ab362c21494a", "name": "Cloudflare", "icons": [{"id": "b6ddc181-8984-495a-bde6-76bc46faeaa1", "name": "Cloudflare", "type": "light"}]}]}, {"id": "c91392d9-fc42-4ea8-b297-d2eda9dc13f0", "name": "SaneBox", "tags": [], "issuers": [], "match_rules": [{"text": "SaneBox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SaneBox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "637f3a66-5201-4b59-b934-c4b9b8d52326", "name": "SaneBox", "icons": [{"id": "db76db23-0bbc-4b51-ad21-f5406d644a66", "name": "SaneBox", "type": "light"}]}]}, {"id": "c91e4db8-6001-494d-8912-e09d2d371ecd", "name": "Abode", "tags": [], "issuers": ["my.goabode.com"], "match_rules": null, "icons_collections": [{"id": "486d0e95-a48d-4306-93bf-c926bfc9b8d2", "name": "Abode", "icons": [{"id": "a5f095d7-182e-46da-9ffd-73000e01854d", "name": "Abode", "type": "light"}]}]}, {"id": "c97ebaa8-7380-4e5d-9059-397f2a1fc982", "name": "Vimeo", "tags": [], "issuers": ["Vimeo"], "match_rules": [], "icons_collections": [{"id": "475f50fa-f86f-4af8-a5d1-684c77d9b695", "name": "Vimeo", "icons": [{"id": "1cbd22a2-5f56-49bb-8907-8704d4376c9f", "name": "Vimeo", "type": "light"}]}]}, {"id": "c99dfe6d-6d75-42ce-a1fb-0c8fbbf70d72", "name": "HubSpot", "tags": [], "issuers": ["HubSpot"], "match_rules": [], "icons_collections": [{"id": "a0e66af7-3ade-4ca4-8e3f-3c072826cd83", "name": "HubSpot", "icons": [{"id": "066fe637-44a4-4422-9d46-99b298b0f467", "name": "HubSpot", "type": "light"}]}]}, {"id": "c9babd51-23b7-4f1d-afa0-504bc85f79b5", "name": "Bokio [SE]", "tags": [], "issuers": [], "match_rules": [{"text": "Bokio [SE]", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bokio [SE]", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "71640138-7e8b-456f-a2ca-bffa8fcd385e", "name": "Bokio [SE]", "icons": [{"id": "c46acf8d-e9d5-44d4-a580-b5acc0edbabb", "name": "Bokio [SE]", "type": "light"}]}]}, {"id": "c9c39e2a-c471-46fc-8467-7ac2ee93b7b3", "name": "Yclas", "tags": [], "issuers": [], "match_rules": [{"text": "Yclas", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Yclas", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d8f29de6-819d-4154-90d1-f3172db294bd", "name": "Yclas", "icons": [{"id": "217c0307-3921-46c7-b059-693060e4e5f4", "name": "Yclas", "type": "light"}]}]}, {"id": "c9f0697e-11f3-4cff-b148-a689805507f8", "name": "Hotjar", "tags": [], "issuers": [], "match_rules": [{"text": "Hotjar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hotjar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e93b56b7-4c39-4c54-8c88-922156f75570", "name": "Hotjar", "icons": [{"id": "bf664111-4e5d-4eac-9c9f-690631f55bbb", "name": "Hotjar", "type": "light"}]}]}, {"id": "ca16982c-9738-44c1-af9a-2580a734acd1", "name": "Netlify", "tags": [], "issuers": ["Netlify"], "match_rules": null, "icons_collections": [{"id": "8b27c743-f69f-40bd-9407-3f64418d69d0", "name": "Netlify", "icons": [{"id": "d57e970a-ee4c-498d-aefd-0fc60e69d58c", "name": "Netlify", "type": "light"}]}]}, {"id": "ca2a983d-42be-496f-9dc9-520c78fb6978", "name": "KuCoin", "tags": [], "issuers": ["KuCoin"], "match_rules": [], "icons_collections": [{"id": "acc381d5-2360-47cf-b52e-470f7558f04e", "name": "KuCoin", "icons": [{"id": "cfe3aadc-2fec-4ef4-8345-53990c50f674", "name": "KuCoin", "type": "light"}]}]}, {"id": "ca40c524-92d2-4b52-b434-8e598374d58e", "name": "Telnyx", "tags": [], "issuers": [], "match_rules": [{"text": "Telnyx", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Telnyx", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db17fdb5-4677-4cdb-862b-b198b5e1ff17", "name": "Telnyx", "icons": [{"id": "44bead51-c51d-469c-9460-ee92ddd1f5b7", "name": "Telnyx", "type": "dark"}, {"id": "cb79d63a-b4c3-4cc3-8ff2-5e06b98cb317", "name": "Telnyx", "type": "light"}]}]}, {"id": "ca63153e-5a76-4489-bb08-be0d41331597", "name": "Namebase", "tags": [], "issuers": [], "match_rules": [{"text": "Namebase", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Namebase", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c6835c4d-4af2-49d4-bc4d-2ed9d7e0213b", "name": "Namebase", "icons": [{"id": "aff401ff-d0e0-44ee-a767-daae7241da64", "name": "Namebase", "type": "light"}]}]}, {"id": "cae0a26c-1415-48aa-bffe-9db684db85eb", "name": "LendingClub Bank", "tags": [], "issuers": ["LendingClub Bank"], "match_rules": null, "icons_collections": [{"id": "42e3f181-4ba9-495a-b18c-489a50fa11a2", "name": "LendingClub Bank", "icons": [{"id": "2525526e-d2dd-4553-ad55-c1c5d358f8a8", "name": "LendingClub Bank", "type": "light"}]}]}, {"id": "caf28d65-0de8-4a9d-b8bb-55580d6fa900", "name": "Arduino", "tags": [], "issuers": ["Arduino"], "match_rules": null, "icons_collections": [{"id": "c5ead9f5-db1d-409f-a7d5-93254b048a15", "name": "Arduino", "icons": [{"id": "4969550f-8769-4bbe-9c34-bb3f4ac05151", "name": "Arduino", "type": "light"}]}]}, {"id": "caf4b0df-d8bd-442c-a57e-9c8187239899", "name": "Wordfence", "tags": [], "issuers": ["Wordfence2FA"], "match_rules": [], "icons_collections": [{"id": "5ffc6239-f3e6-40e7-8fba-8c6965992a58", "name": "Wordfence", "icons": [{"id": "ac075e5a-f88a-4c5c-bcc5-fe9c707ee30b", "name": "Wordfence", "type": "light"}]}]}, {"id": "cb571368-e2be-41f0-a4be-c0c41f6d3877", "name": "NuGet", "tags": [], "issuers": [], "match_rules": [{"text": "NuGet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NuGet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "25b1271b-f2f7-4a26-bb6d-dbac165b99e8", "name": "NuGet", "icons": [{"id": "2cbd5130-dccc-4da8-8fef-a2dc0becf640", "name": "NuGet", "type": "light"}]}]}, {"id": "cb5e1f42-22ee-4993-a04f-9476a9c7c2b3", "name": "PlayStation", "tags": ["ps", "sony"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "4a1e6984-020d-4184-8844-1d1465a925cc", "name": "PlayStation", "icons": [{"id": "89c925d3-cac7-4863-ad3a-307a9528f54f", "name": "PlayStation", "type": "dark"}, {"id": "926f0ae5-3828-41e1-90c7-1c3fa1af1e93", "name": "PlayStation", "type": "light"}]}]}, {"id": "cb6e08b9-dd63-45fe-a3c9-ee5a95ef4355", "name": "Avast", "tags": [], "issuers": ["Avast"], "match_rules": [], "icons_collections": [{"id": "108a8ad6-acb2-43f5-a697-5dd1116d4da5", "name": "Avast", "icons": [{"id": "ce8fafd1-fae2-40a9-a14c-e9077b8fd302", "name": "Avast", "type": "light"}]}]}, {"id": "cba07980-5736-41cd-a7ff-7d1ded91908a", "name": "Topicbox", "tags": [], "issuers": [], "match_rules": [{"text": "topicbox.com", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2c1c87ed-e401-4234-bb14-85f632a9cfdc", "name": "Topicbox", "icons": [{"id": "2bec3f18-ac81-4baa-b06e-5482b079f9a5", "name": "user@domain.com", "type": "dark"}, {"id": "81165418-8e30-4d0a-be2c-d50f467137f5", "name": "user@domain.com", "type": "light"}]}]}, {"id": "cbe525d2-edc9-4c35-a2b0-3966b997faa0", "name": "Groups.io", "tags": [], "issuers": [], "match_rules": [{"text": "Groups.io", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Groups.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "650db4d2-dc14-4f5b-896d-134aafdedb23", "name": "Groups.io", "icons": [{"id": "fad42393-8e37-4ab5-a230-998aab0cfb25", "name": "Groups.io", "type": "light"}]}]}, {"id": "cbfbde48-84ba-42e8-b3bf-07d7163e14b7", "name": "Bibox", "tags": [], "issuers": [], "match_rules": [{"text": "Bibox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bibox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0cb9ef76-9f6e-4fff-82e4-010926f9ac50", "name": "Bibox", "icons": [{"id": "b737be60-51bc-403f-865d-7b02c7fafb25", "name": "Bibox", "type": "light"}]}]}, {"id": "cc919f66-b905-4a74-b033-c029308b1092", "name": "NameHero", "tags": [], "issuers": [], "match_rules": [{"text": "NameHero", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NameHero", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "68c86a94-9ae8-4c5f-bc90-43bdc1fc4eae", "name": "NameHero", "icons": [{"id": "7fa8f747-9e3f-4402-b3d7-304e8a552756", "name": "NameHero", "type": "light"}, {"id": "b6a061db-b34a-4388-9e65-e71d9368646b", "name": "NameHero", "type": "dark"}]}]}, {"id": "cc9b76f7-03da-418a-bc22-e0c183d2bcae", "name": "UpdraftPlus", "tags": [], "issuers": [], "match_rules": [{"text": "UpdraftPlus", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "UpdraftPlus", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2183b659-6c73-4679-85fc-3497a51527c0", "name": "UpdraftPlus", "icons": [{"id": "4a9f88db-51d0-4823-9e27-a51bc9b9f891", "name": "UpdraftPlus", "type": "light"}]}]}, {"id": "ccd5c47a-54be-4b11-a4cf-386986bd5c6f", "name": "CDNsun", "tags": [], "issuers": [], "match_rules": [{"text": "CDNsun", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CDNsun", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "91ec291a-f626-475a-ad1d-d1f5c2a72761", "name": "CDNsun", "icons": [{"id": "2efdc772-60d0-4b10-bc92-9dff6a1252e1", "name": "CDNsun", "type": "light"}]}]}, {"id": "ccff9d4a-c6a1-4a0e-9113-e365e81afb89", "name": "SimplyBook", "tags": [], "issuers": [], "match_rules": [{"text": "SimplyBook", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SimplyBook", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dfe4ea38-0fd0-4997-acd5-2ae2ef01056a", "name": "SimplyBook", "icons": [{"id": "fa92c7fb-af52-4688-b8db-0ca4706ed6d6", "name": "SimplyBook", "type": "light"}]}]}, {"id": "cd188f62-fb59-4cd1-8ae5-b64c0aac60a5", "name": "Nimbus Note", "tags": [], "issuers": [], "match_rules": [{"text": "Nimbus Note", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nimbus Note", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4d56a016-ec72-4a3d-ac0e-eefac85a601e", "name": "Nimbus Note", "icons": [{"id": "b3217327-1236-423c-b733-8a51076dd40f", "name": "Nimbus Note", "type": "light"}]}]}, {"id": "cd19a814-a6a4-4d97-a59f-b1a0b96078d2", "name": "Tokopedia", "tags": [], "issuers": [], "match_rules": [{"text": "Tokopedia", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tokopedia", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "88b27a8b-09f2-4032-9a5b-8eaa3795dd69", "name": "Tokopedia", "icons": [{"id": "afc3a02d-b890-42c3-89ee-f5f4cb245361", "name": "Tokopedia", "type": "light"}]}]}, {"id": "cd2ccd13-eed6-4b66-8a89-8c3f0799b9b6", "name": "MYOB", "tags": [], "issuers": ["MYOB"], "match_rules": [], "icons_collections": [{"id": "1fb872e7-c2b3-40c7-8f1c-711e8589956d", "name": "MYOB", "icons": [{"id": "2c05651a-7a2d-4fa9-bf84-dc3f8c32e12f", "name": "MYOB", "type": "light"}]}]}, {"id": "cda0291f-89ed-4825-a0fd-a080b95c5bf9", "name": "Spin Backup ", "tags": [], "issuers": [], "match_rules": [{"text": "Spin Backup ", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Spin Backup ", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Spin(\\+|\\s|-|_)Backup(\\+|\\s|-|_)", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Spin(\\+|\\s|-|_)Backup(\\+|\\s|-|_)", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "0dbd8e18-4929-4713-8e27-8846f6f1f772", "name": "Spin Backup ", "icons": [{"id": "0710608c-628d-4869-b671-1ea5cbc5bfff", "name": "Spin Backup ", "type": "light"}]}]}, {"id": "cdadf221-4f82-448a-a738-c12ccff5898a", "name": "Twitch", "tags": [], "issuers": ["Twitch"], "match_rules": [], "icons_collections": [{"id": "45b960f2-8b2a-4bfe-8bde-4893b1003d26", "name": "Twitch", "icons": [{"id": "e77928c0-8744-43d5-b448-93423fd446fb", "name": "Twitch", "type": "light"}]}]}, {"id": "cdec1fec-5e6f-4470-9a15-60631f6c4383", "name": "Snapchat", "tags": [], "issuers": ["Snapchat"], "match_rules": [], "icons_collections": [{"id": "0ec93e50-3b19-49b2-baca-ba561a1ba2b1", "name": "Snapchat", "icons": [{"id": "2a50eb71-372a-469a-bbb3-308925a7da44", "name": "Snapchat", "type": "light"}]}]}, {"id": "cdf257fe-a683-44c1-8cfa-5785635e161c", "name": "Emsisoft", "tags": [], "issuers": ["MyEmsisoft"], "match_rules": null, "icons_collections": [{"id": "1493a0d8-5101-412e-bcb7-d74d4b18ea87", "name": "Emsisoft", "icons": [{"id": "e077c716-9f21-4b4a-9848-75c8c0d10b01", "name": "Emsisoft", "type": "light"}]}]}, {"id": "cdfb31ce-9d07-42c7-b621-114043bb81e8", "name": "ViaBTC", "tags": [], "issuers": [], "match_rules": [{"text": "ViaBTC", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ViaBTC", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2961fd45-c8a0-4837-9e83-6cee5318ec7b", "name": "ViaBTC", "icons": [{"id": "2bf20b21-ed5b-4fa4-ba5c-268aa293397b", "name": "ViaBTC", "type": "light"}]}]}, {"id": "cebb233b-1c6f-46cd-bb4e-6ff28f5dd1a5", "name": "Pusher", "tags": [], "issuers": [], "match_rules": [{"text": "Pusher", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pusher", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bbc023f9-fae7-43d5-8117-1ea258cd2fe5", "name": "Pusher", "icons": [{"id": "7a47b825-9d1d-4a0f-9515-b6bdfce41c85", "name": "Pusher", "type": "dark"}, {"id": "e084309f-7f91-423f-9b4d-e53cf0a62d4e", "name": "Pusher", "type": "light"}]}]}, {"id": "cec49110-f206-4e01-83bd-a4f89013ddfe", "name": "Homebridge", "tags": [], "issuers": ["Homebridge"], "match_rules": null, "icons_collections": [{"id": "fefa154a-3cf5-4fcf-9a97-6337ee3f8560", "name": "Homebridge", "icons": [{"id": "afe2a3bd-4dc4-4cbf-b75f-619399b44891", "name": "Homebridge", "type": "light"}]}]}, {"id": "cede9ea4-a4d8-4a9b-a5c3-4f216da2a215", "name": "SiteHost", "tags": [], "issuers": [], "match_rules": [{"text": "SiteHost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SiteHost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "adf3ddfe-912c-46b7-947f-6b4b6ee24504", "name": "SiteHost", "icons": [{"id": "e495c653-5577-465a-9857-a874c8c6f7a6", "name": "SiteHost", "type": "light"}]}]}, {"id": "cf118b0d-8972-4491-aec4-eb7821701728", "name": "Vancity", "tags": [], "issuers": [], "match_rules": [{"text": "Vancity", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Vancity", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1216e928-cfa1-42fb-ac46-d54f7b962d82", "name": "Vancity", "icons": [{"id": "1a328ef9-7b00-4cf6-8bac-a04c2eb5b845", "name": "Vancity", "type": "light"}]}]}, {"id": "cf362457-f92c-41b1-b937-75f6c2bc7928", "name": "Mailcow", "tags": [], "issuers": ["Mailcow"], "match_rules": null, "icons_collections": [{"id": "d9eecf73-c935-48d6-9aac-a9a3c63f7d0b", "name": "Mailcow", "icons": [{"id": "1e52ddd7-f0ab-4b57-9e76-6c314fb9fa45", "name": "Mailcow", "type": "light"}]}]}, {"id": "cf415505-1dc3-4bb7-a9be-1fe85b736cb6", "name": "University of Notre Dame", "tags": [], "issuers": [], "match_rules": [{"text": "University of Notre Dame", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Notre Dame", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "00595fa8-96d3-48cb-85fe-af8b6967db08", "name": "University of Notre Dame", "icons": [{"id": "45cfa8ff-962c-4c4b-b361-1d3c9205b81a", "name": "University of Notre Dame", "type": "light"}]}]}, {"id": "cf794e79-afa6-4c3b-ba61-7e119f2f5c9f", "name": "CleverTap", "tags": [], "issuers": [], "match_rules": [{"text": "CleverTap", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CleverTap", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "87abfbeb-863a-456a-a2d6-f7c77a61206b", "name": "CleverTap", "icons": [{"id": "0a0fcc92-0777-4fff-a4ed-f56a6446a3d0", "name": "CleverTap", "type": "light"}]}]}, {"id": "cfbb724a-5f4d-4da6-bfb5-352fee268e55", "name": "OLG", "tags": [], "issuers": [], "match_rules": [{"text": "OLG", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OLG", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a4f3c3d4-0fb4-43f2-9d6d-8de3cfb15652", "name": "OLG", "icons": [{"id": "741f3d7d-d0fa-43e0-abb7-f3b137f7105a", "name": "OLG", "type": "light"}]}]}, {"id": "cfd72b78-de9e-47dd-a2d0-db3b45a7e0d8", "name": "Sonic", "tags": [], "issuers": [], "match_rules": [{"text": "Sonic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sonic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "17bfbfd9-e1d7-429c-a186-4ce5eb989a50", "name": "Sonic", "icons": [{"id": "b3ae88ca-af7a-4156-96ec-2ea14da7e2d2", "name": "Sonic", "type": "light"}]}]}, {"id": "d0304fa7-f304-40e2-93c4-b4d4d3e95486", "name": "Cisco Meraki", "tags": [], "issuers": [], "match_rules": [{"text": "Meraki", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "30d5083a-e9fd-43c0-a011-698e431fb409", "name": "Cisco Meraki", "icons": [{"id": "9fb9e09a-5513-496d-be48-73f4e334a9eb", "name": "Cisco Meraki", "type": "light"}]}]}, {"id": "d0d6f366-ccba-4bef-9e3b-8abd120897bb", "name": "Compose", "tags": [], "issuers": [], "match_rules": [{"text": "Compose", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Compose", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9b38d20c-50db-4c41-8958-6fa90cc556e8", "name": "Compose", "icons": [{"id": "b683ce74-420a-4c3d-a780-94ff3c0b896f", "name": "Compose", "type": "light"}, {"id": "f0115a83-e80d-4a8f-bb3c-7280c47663d8", "name": "Compose", "type": "dark"}]}]}, {"id": "d0e58424-5c84-43e5-b508-c3d59dcd033a", "name": "Smartly.io", "tags": [], "issuers": [], "match_rules": [{"text": "Smartly.io", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Smartly.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3e808796-a00a-4d57-9d72-773645e1990a", "name": "Smartly.io", "icons": [{"id": "23cc7dc8-1be6-4dbc-8a62-5b1d7108675d", "name": "Smartly.io", "type": "light"}]}]}, {"id": "d0edd58d-e40a-444d-a440-e4907b0a22d6", "name": "Bitwarden", "tags": [], "issuers": ["Bitwarden"], "match_rules": [], "icons_collections": [{"id": "6ba06a11-e5d2-493a-950b-cb0d400bc6db", "name": "Bitwarden", "icons": [{"id": "2185da04-3d82-4fdc-9d20-3d670cf31073", "name": "Bitwarden", "type": "dark"}, {"id": "e05b1d22-3d97-41fb-9fab-7dd243abe822", "name": "Bitwarden", "type": "light"}]}]}, {"id": "d1a264b0-a140-41f0-a810-221b8c5b8fe4", "name": "TherapyNotes", "tags": [], "issuers": [], "match_rules": [{"text": "TherapyNotes", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "TherapyNotes", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "20ab5234-cf6a-4d98-8941-47346f0a6165", "name": "TherapyNotes", "icons": [{"id": "3af071b5-d205-4574-a8c8-f9d4b87c8794", "name": "TherapyNotes", "type": "light"}]}]}, {"id": "d1f4fd42-38e0-4d8d-9ff4-4f1f7d9f0a8e", "name": "Rubrik", "tags": [], "issuers": ["Rubrik"], "match_rules": null, "icons_collections": [{"id": "e4c14f12-668c-49fc-b0b5-dec9830e5ce1", "name": "Rubrik", "icons": [{"id": "84d9624b-678a-4236-a10b-2c9d0be33df4", "name": "Rubrik", "type": "light"}]}]}, {"id": "d241edff-480f-4201-840a-5a1c1d1323c2", "name": "Steam", "tags": [], "issuers": ["Steam"], "match_rules": [], "icons_collections": [{"id": "d5fd5765-bc30-407a-923f-e1dfd5cec49f", "name": "STEAM", "icons": [{"id": "09f120c3-7f23-4e4e-8e41-61d3087ef087", "name": "STEAM", "type": "light"}]}]}, {"id": "d25508f8-c64b-41d3-905a-e95d484b034a", "name": "Zonda", "tags": [], "issuers": ["BitBay", "ZondaAuth"], "match_rules": [], "icons_collections": [{"id": "b8b16d9f-52ec-471f-bfc0-fd1e6f9d60f3", "name": "Zonda", "icons": [{"id": "b31a3f2b-b074-4b49-8f7f-e16dd95ba7fb", "name": "Zonda", "type": "dark"}, {"id": "bfb6f657-2c6c-4a32-820e-69222f85ccae", "name": "Zonda", "type": "light"}]}]}, {"id": "d28a884f-3f49-4c10-b3f0-40d8f2a356c1", "name": "North Carolina State University", "tags": [], "issuers": [], "match_rules": [{"text": "North Carolina State University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "North Carolina State University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ba14d0cb-8f0e-4dbc-be7d-1d7fba074a76", "name": "North Carolina State University", "icons": [{"id": "f54daab1-9eb9-47f9-b2ed-45fa8bf62bc2", "name": "North Carolina State University", "type": "light"}]}]}, {"id": "d2df94e1-fcf9-4f47-b605-f123a7d8edf5", "name": "Trovo", "tags": [], "issuers": [], "match_rules": [{"text": "Trovo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Trovo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1309aa5b-344c-4058-b1eb-7211c6ea5361", "name": "Trovo", "icons": [{"id": "409b0a59-dcdd-47f9-95c1-ba143cbf9d66", "name": "Trovo", "type": "light"}]}]}, {"id": "d3085b71-88d3-4c41-bd73-d029fc90e401", "name": "EmailMeForm", "tags": [], "issuers": [], "match_rules": [{"text": "EmailMeForm", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "EmailMeForm", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a9c3ae21-a596-4103-8e25-f867b55d5a96", "name": "EmailMeForm", "icons": [{"id": "1c373a03-a8b4-4c68-8e3b-6d5cd02a09d7", "name": "EmailMeForm", "type": "light"}]}]}, {"id": "d30dada7-c3b8-4f37-9cdb-4fdbe649ba8a", "name": "Availity Essentials", "tags": [], "issuers": [], "match_rules": [{"text": "Availity Essentials", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Availity Essentials", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6f24dc2c-5a8d-416c-9b71-da36e1ae0e88", "name": "Availity Essentials", "icons": [{"id": "13889832-ebd6-4b8c-a9fc-0aa6882f0713", "name": "Availity Essentials", "type": "light"}]}]}, {"id": "d33dd19c-ce43-45a2-b204-fc636f69e75e", "name": "Roblox", "tags": [], "issuers": ["Roblox"], "match_rules": [], "icons_collections": [{"id": "e37670c2-0870-48ad-b736-1d8e0da7e635", "name": "Roblox", "icons": [{"id": "c76caac1-299e-46a0-ac0f-3504ec4f3acb", "name": "Roblox", "type": "dark"}, {"id": "ee3b913d-ff41-4c52-b5f3-f640d0689ba9", "name": "Roblox", "type": "light"}]}]}, {"id": "d353dc43-cacd-4618-9169-6bda93d940f1", "name": "Kickstarter", "tags": [], "issuers": ["Kickstarter"], "match_rules": [], "icons_collections": [{"id": "aaaef857-a3e1-4a88-91ec-f982aef0cf0b", "name": "Kickstarter", "icons": [{"id": "39917475-e8c8-42f6-aabd-5d9ec8aaf93d", "name": "Kickstarter", "type": "light"}]}]}, {"id": "d3663717-ff77-4dce-9cab-48204f1a30c1", "name": "Flywheel", "tags": [], "issuers": [], "match_rules": [{"text": "Flywheel", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Flywheel", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5c578a2d-cff4-455b-b840-ddcffd333563", "name": "Flywheel", "icons": [{"id": "4ecaa5e9-682b-46e7-b161-1646331ddaef", "name": "Flywheel", "type": "light"}]}]}, {"id": "d3b5e2f2-96c2-4fa4-8b2d-38e3faf8fc3e", "name": "GoCardless", "tags": [], "issuers": [], "match_rules": [{"text": "GoCardless", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "GoCardless", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "965d9c91-11ba-4703-99c1-544695135643", "name": "GoCardless", "icons": [{"id": "40af1500-f112-433b-b323-048e4d74ec01", "name": "GoCardless", "type": "light"}, {"id": "c1718b75-d0bf-4efd-9dee-993558d489b0", "name": "GoCardless", "type": "dark"}]}]}, {"id": "d476a817-d8cd-4a39-90dc-88cf65e97c66", "name": "NS1", "tags": [], "issuers": [], "match_rules": [{"text": "NS1", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NS1", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "363a3a90-3180-4edf-bf17-4e0b05d6a72b", "name": "NS1", "icons": [{"id": "423a6ae4-a3d2-4e2b-8cf2-93c8b286850f", "name": "NS1", "type": "dark"}, {"id": "88d74315-9e2b-47d1-8594-184950af74aa", "name": "NS1", "type": "light"}]}]}, {"id": "d4eaba7a-4fb0-4447-96b1-005fbf8cdf38", "name": "Heroku", "tags": [], "issuers": ["Heroku"], "match_rules": [], "icons_collections": [{"id": "eafabe79-26cb-43f3-b2cf-027d155407a9", "name": "Heroku", "icons": [{"id": "c46798ca-6f85-46bd-b97c-35c4214edf6f", "name": "Heroku", "type": "light"}]}]}, {"id": "d5085cf3-4521-4804-a88a-f78241546308", "name": "Cordial", "tags": [], "issuers": [], "match_rules": [{"text": "Cordial", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cordial", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c917dbf8-f285-452e-b5c3-87ccca406c60", "name": "Cordial", "icons": [{"id": "f570edb9-550c-460b-9c0a-21a8049e4131", "name": "Cordial", "type": "light"}]}]}, {"id": "d50d085c-87a1-4c03-80aa-d2384971c6f3", "name": "Amazon", "tags": [], "issuers": ["Amazon"], "match_rules": [], "icons_collections": [{"id": "96b374dc-c981-4e55-af2e-9272b43455a1", "name": "Amazon", "icons": [{"id": "b0ef1097-e8f6-45a4-a6db-1b79140572af", "name": "Amazon ", "type": "dark"}, {"id": "ef9eca9d-8fd4-434d-8a98-c93361d21fbb", "name": "Amazon", "type": "light"}]}]}, {"id": "d50e1bc1-d85a-4323-aced-b0a343b12426", "name": "RunSignUp", "tags": [], "issuers": [], "match_rules": [{"text": "RunSignUp", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "RunSignUp", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7fe635ad-3cb2-4c1c-a863-d08699caaeec", "name": "RunSignUp", "icons": [{"id": "cd31da7b-de50-4e26-977e-ac0ee7cdfd2b", "name": "RunSignUp", "type": "light"}]}]}, {"id": "d519742d-db19-440a-b9af-cd4c31a58603", "name": "BitMax", "tags": [], "issuers": [], "match_rules": [{"text": "BitMax", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "f243affd-ca1c-4f7a-9bb6-bf087021f8b8", "name": "BitMax", "icons": [{"id": "09099990-0a59-417b-a6af-f6e402f30ebb", "name": "BitMax", "type": "light"}]}]}, {"id": "d54e6374-570e-445f-abf8-608e8bca5162", "name": "Gate.io", "tags": [], "issuers": [], "match_rules": [{"text": "Gate.io", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2300e8d8-cf3f-43e0-b5bb-e415b89f6aca", "name": "Gate.io", "icons": [{"id": "51b5caec-ef9d-45ec-ad81-2b29b8123ddf", "name": "Gate.io", "type": "light"}]}]}, {"id": "d5e2786c-9601-4b11-a33c-9f818baff264", "name": "NEXO", "tags": [], "issuers": ["Nexo"], "match_rules": [], "icons_collections": [{"id": "cb8690c9-9d0a-4d87-95e2-26de44529acb", "name": "NEXO", "icons": [{"id": "d4956991-55c0-451c-a8c2-c681a3b8bde0", "name": "NEXO", "type": "light"}]}]}, {"id": "d64758c3-18de-4d77-9139-b60738d57f4b", "name": "Spring", "tags": [], "issuers": [], "match_rules": [{"text": "Spring", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Spring", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3912fbbd-5c38-420f-9b20-6536eed22179", "name": "Spring", "icons": [{"id": "c42adbbd-6d9e-48a0-9f44-53ae8b0dc982", "name": "Spring", "type": "light"}]}]}, {"id": "d6570704-868f-4cca-990f-3f0fdceae277", "name": "Bybit", "tags": [], "issuers": ["Bybit"], "match_rules": [], "icons_collections": [{"id": "0187c518-0edc-4892-9fb5-46c10c7ac16b", "name": "Bybit", "icons": [{"id": "a5025e9c-99af-45f4-99e5-d8445438fe76", "name": "Bybit", "type": "light"}, {"id": "f691a48f-f3c5-457e-aee2-75022e23aa7f", "name": "Bybit", "type": "dark"}]}]}, {"id": "d657fe1b-6eb7-47a7-aed7-51f6773655e7", "name": "MaiCoin", "tags": [], "issuers": [], "match_rules": [{"text": "MaiCoin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "MaiCoin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ffbb48d4-7e95-4b01-bd54-66092bc38328", "name": "MaiCoin", "icons": [{"id": "1e1d4b78-328f-440c-90ee-7247afe30bf4", "name": "MaiCoin", "type": "light"}]}]}, {"id": "d65f8c6f-e47c-4df3-88be-579eddfd8464", "name": "Aiven", "tags": [], "issuers": [], "match_rules": [{"text": "Aiven", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Aiven", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2583b855-a6aa-4199-bd3e-fa15f184ba61", "name": "Aiven", "icons": [{"id": "dbc6e3c8-2edc-47ed-b732-38f13ee2e03e", "name": "Aiven", "type": "light"}]}]}, {"id": "d6850b85-7648-4558-b06d-01b91bf83dfe", "name": "BitBar", "tags": [], "issuers": [], "match_rules": [{"text": "BitBar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BitBar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a9f58c40-a348-401f-9671-17afd77de40e", "name": "BitBar", "icons": [{"id": "1f0a8e52-8306-4421-a472-6ca1309579f5", "name": "BitBar", "type": "light"}]}]}, {"id": "d696bbdf-5075-4f8d-af54-afb334d704c5", "name": "PowerReviews", "tags": [], "issuers": [], "match_rules": [{"text": "PowerReviews", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "PowerReviews", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fbf9cf79-afa8-4e26-9b46-1bc378c8764c", "name": "PowerReviews", "icons": [{"id": "ccea8844-d1dd-4d09-bec9-32401d8e8799", "name": "PowerReviews", "type": "light"}]}]}, {"id": "d6c385ef-7a96-4788-843d-7d071bd4d0f6", "name": "Emma Email Marketing", "tags": [], "issuers": [], "match_rules": [{"text": "Emma Email Marketing", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Emma Email Marketing", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "300464d4-ee2b-4dfb-bd3b-3c0ea0e75e7a", "name": "Emma Email Marketing", "icons": [{"id": "4b80b83f-d653-4c81-b588-19597f482453", "name": "Emma Email Marketing", "type": "light"}, {"id": "e6a53422-36a4-48be-9c71-fc9698ff5c88", "name": "Emma Email Marketing", "type": "dark"}]}]}, {"id": "d6c6d348-eceb-45e3-bb22-fd25c08b8243", "name": "Sonix", "tags": [], "issuers": [], "match_rules": [{"text": "Sonix", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sonix", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2f43ac34-4290-4cc7-b337-581e6cf1be57", "name": "Sonix", "icons": [{"id": "3e84926b-6334-488e-a0ab-7d9a916d401f", "name": "Sonix", "type": "light"}]}]}, {"id": "d6fb6986-f7bd-4de7-a541-25362b27a2bc", "name": "Coinut", "tags": [], "issuers": [], "match_rules": [{"text": "Coinut", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinut", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d86665e5-0401-40a2-9a25-0700b24277c0", "name": "Coinut", "icons": [{"id": "5601880f-c668-4a52-a903-49ec4d9abc3b", "name": "Coinut", "type": "light"}]}]}, {"id": "d70c9e1a-69b7-4a5e-8745-ed8d45737060", "name": "Envato", "tags": [], "issuers": ["Envato"], "match_rules": null, "icons_collections": [{"id": "7d3744c4-fcec-47d7-b660-640c9d04eff9", "name": "Envato", "icons": [{"id": "8e504e9e-f362-464d-80e8-c88861c55bd5", "name": "Envato", "type": "light"}]}]}, {"id": "d7b6f20a-b1cc-4aa4-86aa-02efb00244b7", "name": "SiteGround", "tags": [], "issuers": [], "match_rules": [{"text": "SiteGround", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SiteGround", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fd0820ec-c5d5-41c1-a73c-93efd4578eee", "name": "SiteGround", "icons": [{"id": "e3c4c211-3266-48dc-8805-57f57cd66fa4", "name": "SiteGround", "type": "light"}, {"id": "fae6fea6-2d84-4a15-bfbd-dd1f51e8ff0f", "name": "SiteGround", "type": "dark"}]}]}, {"id": "d7cbfb18-60b2-47a6-b14f-c64e4c4b0f2a", "name": "Serverspace", "tags": [], "issuers": [], "match_rules": [{"text": "Serverspace", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Serverspace", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d998ceff-02af-4246-b1d5-f50139e85fd2", "name": "Serverspace", "icons": [{"id": "a9575141-2621-4f66-bea0-39df4e258f33", "name": "Serverspace", "type": "light"}]}]}, {"id": "d816f562-0ad3-4f13-bc64-17083336ec77", "name": "Formsite", "tags": [], "issuers": [], "match_rules": [{"text": "Formsite", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Formsite", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f5e17c5f-06e2-43ef-b738-55e41dbeb6cc", "name": "Formsite", "icons": [{"id": "cf433a5e-0658-461f-820f-810503a3cfcd", "name": "Formsite", "type": "light"}]}]}, {"id": "d83858e9-f030-40e2-a3cc-20a902e97cec", "name": "Mountain America Credit Union", "tags": [], "issuers": [], "match_rules": [{"text": "Mountain America Credit Union", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mountain America Credit Union", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "044c8ff6-2a87-4f25-829b-afb4d302472b", "name": "Mountain America Credit Union", "icons": [{"id": "44b9ef12-49fb-442f-95f8-c6b3a2ebb9e8", "name": "Mountain America Credit Union", "type": "light"}]}]}, {"id": "d85a3247-bf4e-4c8d-aae8-a17f896013de", "name": "Preceda", "tags": [], "issuers": ["Preceda"], "match_rules": [], "icons_collections": [{"id": "580a11d7-69ad-4aa8-ba4b-1d9f5c23474e", "name": "Preceda", "icons": [{"id": "24f09611-2127-462c-8706-247c5571a402", "name": "Preceda", "type": "dark"}, {"id": "4705a378-bcbd-4342-8cd2-ef6049052c58", "name": "Preceda", "type": "light"}]}]}, {"id": "d8ac3674-439c-431d-996f-73782390a870", "name": "DreamHost", "tags": [], "issuers": [], "match_rules": [{"text": "DreamHost", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DreamHost", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ecc7446c-78fa-4c68-95ba-9a27d7da3549", "name": "DreamHost", "icons": [{"id": "8be927c6-9670-4235-9667-aec662a06408", "name": "DreamHost", "type": "light"}, {"id": "9d8d6e3c-66c7-4d11-aae1-ba65efa4d5d9", "name": "DreamHost", "type": "dark"}]}]}, {"id": "d8e293b5-918e-4e08-99f1-5076493ce7c3", "name": "Truth Social", "tags": [], "issuers": ["truthsocial.com"], "match_rules": null, "icons_collections": [{"id": "d08818cf-2843-46c1-af6e-2989750838d2", "name": "Truth Social", "icons": [{"id": "01969b11-f90a-403a-84f3-ea90bec9332a", "name": "Truth Social", "type": "light"}]}]}, {"id": "d94b0045-e3e9-415d-a585-89cf2b29e466", "name": "Taboola", "tags": [], "issuers": [], "match_rules": [{"text": "Taboola", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Taboola", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2d1132cd-59f5-4e61-a383-6a0d58f0a14e", "name": "Taboola", "icons": [{"id": "830b9f7b-64b9-4569-8834-d535a78d397b", "name": "Taboola", "type": "light"}]}]}, {"id": "d9f8dc5a-9111-4e5e-8568-9d88849481b5", "name": "CoinFalcon", "tags": [], "issuers": [], "match_rules": [{"text": "CoinFalcon", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinFalcon", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "03f332d0-de3c-488c-a768-29f7db373d79", "name": "CoinFalcon", "icons": [{"id": "0e525401-c29d-42e0-a112-025eb0ea38d1", "name": "CoinFalcon", "type": "light"}]}]}, {"id": "da8084c3-9115-4879-9900-c5f41b7a98d6", "name": "Wealthfront", "tags": [], "issuers": [], "match_rules": [{"text": "Wealthfront", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wealthfront", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "da3befaa-56c1-4b79-81af-6b35e84d7824", "name": "Wealthfront", "icons": [{"id": "c4102377-ecbe-461f-8c8d-436d7c47a086", "name": "Wealthfront", "type": "light"}]}]}, {"id": "dad21619-8e8d-44fd-9b85-a4cc8d6b56da", "name": "MyAnimeList", "tags": [], "issuers": [], "match_rules": [{"text": "myanimelist", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "90bb2f2c-c3ce-4b07-9a12-44fcebd6170e", "name": "MyAnimeList", "icons": [{"id": "790b1bdc-7989-4191-9c02-398b61c7256d", "name": "MyAnimeList", "type": "light"}]}]}, {"id": "dadf55ec-372d-4dc9-b025-208b52485720", "name": "Faucet Crypto", "tags": [], "issuers": [], "match_rules": [{"text": "Faucet Crypto", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Faucet Crypto", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a9087677-4f20-404b-920c-b84ca36e2330", "name": "Faucet Crypto", "icons": [{"id": "0885aee6-e4ef-467f-bb3c-84f4145a005f", "name": "Faucet Crypto", "type": "light"}, {"id": "88dd735f-3779-4fec-b73d-cc6d3d873070", "name": "Faucet Crypto", "type": "dark"}]}]}, {"id": "dae3b24e-f732-4ad1-affb-71a7068896d6", "name": "Bithumb", "tags": [], "issuers": [], "match_rules": [{"text": "Bithumb", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bithumb", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db821708-cb2b-49df-bf15-46917ceebccb", "name": "Bithumb", "icons": [{"id": "249c7cab-4ef3-4354-bc4b-b076fdae64f1", "name": "Bithumb", "type": "light"}]}]}, {"id": "db8726ee-c246-4e75-bff3-422c9c0e5efb", "name": "OpenSRS", "tags": [], "issuers": [], "match_rules": [{"text": "OpenSRS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "OpenSRS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "015ed54f-c8b8-49e5-94c5-03ba6addea53", "name": "OpenSRS", "icons": [{"id": "96eb21c4-ae03-40b5-b0b7-855020c7ccd0", "name": "OpenSRS", "type": "light"}]}]}, {"id": "dba78fe8-da79-4c21-8f8d-6e9c0534c2d6", "name": "AllMyLinks", "tags": [], "issuers": [], "match_rules": [{"text": "AllMyLinks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AllMyLinks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eff97b47-0a43-42e3-b276-cb235e1457dd", "name": "AllMyLinks", "icons": [{"id": "a911be21-5b25-4f09-972d-64c6787d47b9", "name": "AllMyLinks", "type": "light"}]}]}, {"id": "dbbeb162-83e6-45b2-b1a2-11300ae18dd0", "name": "Gmail", "tags": [], "issuers": [], "match_rules": [], "icons_collections": [{"id": "2020274e-f0ae-4643-ad56-af73612ae468", "name": "Gmail", "icons": [{"id": "d91715be-1218-4069-81f3-6bedd94afb30", "name": "Gmail", "type": "light"}]}]}, {"id": "dc08c6db-d095-4bac-a64b-275b2f7843ee", "name": "Putler", "tags": [], "issuers": [], "match_rules": [{"text": "Putler", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Putler", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bdb60032-34a6-47f1-805e-bb91b0dbee03", "name": "Putler", "icons": [{"id": "2e43177a-e330-473a-919a-b4a9bc9e0a73", "name": "Putler", "type": "light"}]}]}, {"id": "dc9099bf-f506-4713-b206-bcc4f802ed1f", "name": "Deputy", "tags": [], "issuers": [], "match_rules": [{"text": "Deputy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Deputy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3dad9223-de78-475e-b252-f341536edbab", "name": "Deputy", "icons": [{"id": "40ca4ded-b0ef-4e77-959a-ebf3ccb71a08", "name": "Deputy", "type": "light"}]}]}, {"id": "dc9a8bd9-6e0f-4d9a-a8de-5baf1b4141d6", "name": "Techlore Discussions", "tags": [], "issuers": ["Techlore%20Discussions", "Techlore Discussions", "Techlore+Discussions"], "match_rules": [], "icons_collections": [{"id": "ff5d6591-9c33-4524-be54-4698032a7a8d", "name": "Techlore Discussions", "icons": [{"id": "9c102fda-7a8a-4561-b098-ebd654d4260e", "name": "Techlore Discussions", "type": "light"}]}]}, {"id": "dcbc5cc0-60d3-4235-9430-4a8c06286283", "name": "Nextcloud", "tags": [], "issuers": ["Nextcloud"], "match_rules": [], "icons_collections": [{"id": "caa08091-57d6-409d-a45e-f684cdbc79b0", "name": "Nextcloud", "icons": [{"id": "1d3c6f8b-dd46-4529-812e-f2d3c4bf9567", "name": "Nextcloud", "type": "light"}]}]}, {"id": "dcf1a91b-e527-4c40-9a5d-c34ea2f1c680", "name": "Twingate", "tags": [], "issuers": ["Twingate"], "match_rules": null, "icons_collections": [{"id": "15ca416a-3212-4db7-9bca-60548203b411", "name": "Twingate", "icons": [{"id": "7bc5475c-c581-48fc-a565-6321d902682f", "name": "Twingate", "type": "light"}, {"id": "93b09059-80e5-4d35-85e7-27d7ea682aef", "name": "Twingate", "type": "dark"}]}]}, {"id": "dd1fc65b-34a9-4c97-b3a1-f7da1385ce61", "name": "Minergate", "tags": [], "issuers": ["minergate.com"], "match_rules": [], "icons_collections": [{"id": "1054c554-f8bc-46c5-9c79-f7a8b74dd5fe", "name": "Minergate", "icons": [{"id": "6b9ce89a-9add-4b34-83c4-13c5cc1e8dba", "name": "Minergate", "type": "light"}]}]}, {"id": "dd201816-6a50-43ee-ac67-220f3d569bdb", "name": "SPID", "tags": [], "issuers": ["ARUBA"], "match_rules": null, "icons_collections": [{"id": "2a90f267-5e37-4003-a114-e05892e5f4df", "name": "SPID", "icons": [{"id": "6446f8ea-5d6c-4f8d-b453-9058295c77e6", "name": "SPID", "type": "light"}, {"id": "b179582b-fb0f-4bd6-938c-dac6d6beaae2", "name": "SPID", "type": "dark"}]}]}, {"id": "dd3b5fe6-1a0f-47a9-b192-7f8ca2003ce7", "name": "KeepSolid", "tags": [], "issuers": [], "match_rules": [{"text": "KeepSolid", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "KeepSolid", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "233f2d16-2f14-4e31-9931-ca33019a93ed", "name": "KeepSolid", "icons": [{"id": "5c5eb221-9472-4b65-b898-d79ff9887ee8", "name": "KeepSolid", "type": "light"}, {"id": "5ed661b9-8551-4ce9-a807-2b24e05c6274", "name": "KeepSolid", "type": "dark"}]}]}, {"id": "dd48038e-54f0-4d26-b6e7-682d75b0ff00", "name": "FreeTaxUSA", "tags": [], "issuers": [], "match_rules": [{"text": "FreeTaxUSA", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FreeTaxUSA", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "27b3d372-9613-43cf-b9b4-9bab86411c77", "name": "FreeTaxUSA", "icons": [{"id": "548817ea-3007-4280-adcb-959416e35c7a", "name": "FreeTaxUSA", "type": "light"}]}]}, {"id": "dd56b47d-3f3b-4254-89fa-804cfc63bffb", "name": "Batch", "tags": [], "issuers": [], "match_rules": [{"text": "Batch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Batch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e1e27f88-1825-4746-bb36-581e9ca7aaf6", "name": "Batch", "icons": [{"id": "5d323e47-3734-44c4-8f8b-ea2847615584", "name": "Batch", "type": "dark"}, {"id": "b9cdd714-81d4-4681-9044-3b72b8c8467a", "name": "Batch", "type": "light"}]}]}, {"id": "dd6a9a01-52d7-4b5e-9f74-0ca68538a070", "name": "Crowdin", "tags": [], "issuers": ["crowdin.com"], "match_rules": null, "icons_collections": [{"id": "6059f9e8-d90b-4cca-acea-ae8797837adb", "name": "Crowdin", "icons": [{"id": "3625c1e6-c020-49c8-912e-ffd5f19f6f1f", "name": "Crowdin", "type": "light"}, {"id": "651adfb1-9ed0-4a58-bcab-7d1a24f6f19a", "name": "Crowdin", "type": "dark"}]}]}, {"id": "dd9e6bf7-a221-4812-b077-da76bc04c202", "name": "Bitget", "tags": [], "issuers": [], "match_rules": [{"text": "Bitget", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitget", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ac83fe1b-f58e-40fc-af73-50fe53ccf047", "name": "Bitget", "icons": [{"id": "69b7a59e-0e5c-46af-bf93-8cc8828141bc", "name": "Bitget", "type": "light"}]}]}, {"id": "ddb8874c-4fb7-46af-b478-5abb52f30add", "name": "2Checkout", "tags": [], "issuers": [], "match_rules": [{"text": "2Checkout", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "2Checkout", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "16a03f1c-aad1-417b-875f-3dadc9e38f2d", "name": "2Checkout", "icons": [{"id": "4bfc8855-5ffb-418e-821b-04174f7c3bf4", "name": "2Checkout", "type": "light"}]}]}, {"id": "de058813-b5a8-49f0-b9d6-ec5fe0bd1864", "name": "Cryptohopper", "tags": [], "issuers": [], "match_rules": [{"text": "Cryptohopper", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cryptohopper", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a432069e-3fda-4f25-8907-d53c019b14d9", "name": "Cryptohopper", "icons": [{"id": "4c8bf28a-f8b8-4eac-8b26-1c1549fb3ace", "name": "Cryptohopper", "type": "light"}]}]}, {"id": "de1f18fb-d73a-4136-a675-801911202565", "name": "Principal", "tags": [], "issuers": [], "match_rules": [{"text": "Principal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Principal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cd75e4f1-e661-40c4-b6f4-ea5dcb66567e", "name": "Principal", "icons": [{"id": "49ffb3b7-80fe-48a4-9462-802d93e00530", "name": "Principal", "type": "light"}]}]}, {"id": "de59d073-72a6-4ff5-97ff-5ce7a56d0db2", "name": "CoinPayments", "tags": [], "issuers": [], "match_rules": [{"text": "CoinPayments", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinPayments", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a91bbfe3-365c-4c04-99c0-247506f51897", "name": "CoinPayments", "icons": [{"id": "93aabf0b-b050-4eb9-99d0-d3721e58a3b2", "name": "CoinPayments", "type": "light"}]}]}, {"id": "de8611e4-4b83-4b9b-b252-94fd02460916", "name": "A2 Hosting", "tags": [], "issuers": [], "match_rules": [{"text": "A2 Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "A2 Hosting", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "A2Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "A2Hosting", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4fd0608c-3721-4349-9f57-9930521f5bb5", "name": "A2 Hosting", "icons": [{"id": "b82275c0-d8f1-4307-aa39-e1beac44f7ad", "name": "A2 Hosting", "type": "light"}]}]}, {"id": "de9a762b-166b-465e-a1c4-863937c9e337", "name": "Gab Social", "tags": [], "issuers": ["gab.com"], "match_rules": null, "icons_collections": [{"id": "20911304-bff2-4754-8b53-15a43f2aadf0", "name": "Gab Social", "icons": [{"id": "33b98508-602d-419d-9565-1e360f7609ee", "name": "Gab Social", "type": "light"}]}]}, {"id": "dec50470-32c3-4f63-baf1-40e82b961f10", "name": "Raygun", "tags": [], "issuers": [], "match_rules": [{"text": "Raygun", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Raygun", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77977d70-b13e-4b8f-a420-9e0412e0eb46", "name": "Raygun", "icons": [{"id": "f1e66663-b297-4c31-8555-67b992981f53", "name": "Raygun", "type": "light"}]}]}, {"id": "deead8dd-c9e3-463a-8c73-1e75c5ec13cf", "name": "Rockstar Games", "tags": [], "issuers": ["Rockstar+Games", "Rockstar Games"], "match_rules": [], "icons_collections": [{"id": "fcb5345a-dacd-4898-884d-162c8263fd62", "name": "Rockstar Games", "icons": [{"id": "8831a88a-d05d-4ae0-95fe-00d5684c4656", "name": "Rockstar Games", "type": "light"}]}]}, {"id": "def23ee5-6f78-4803-a744-965b688a9b10", "name": "STEX", "tags": [], "issuers": [], "match_rules": [{"text": "STEX", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "STEX", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5fb72425-b149-4ad7-8adb-e6fbf9a4c506", "name": "STEX", "icons": [{"id": "21fbaf75-d863-4dc3-8d80-822b47bf69fc", "name": "Stex", "type": "dark"}, {"id": "e116c531-fa7d-4b49-b1b4-1aa894c3d34f", "name": "STEX", "type": "light"}]}]}, {"id": "df008d68-670f-4188-bf4b-2cd6a05f0060", "name": "NETELLER", "tags": [], "issuers": [], "match_rules": [{"text": "NETELLER", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NETELLER", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dfdfa67e-2017-4557-8429-38ed6726bc5b", "name": "NETELLER", "icons": [{"id": "329a7a04-ceeb-476c-88d4-bbde933e5560", "name": "NETELLER", "type": "light"}]}]}, {"id": "df07b6de-6b7a-4cd2-93c8-eb3f84fd8d3f", "name": "Optimizely", "tags": [], "issuers": [], "match_rules": [{"text": "Optimizely", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Optimizely", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "45918e70-6145-4808-bfaf-769e5f7b7185", "name": "Optimizely", "icons": [{"id": "a899e33c-4d7e-4c86-a6a0-994ea89e4c77", "name": "Optimizely", "type": "light"}]}]}, {"id": "df8f7dea-9b3d-4058-bd1e-4a2e8d93f45e", "name": "NetSuite", "tags": [], "issuers": ["production.netsuite.com"], "match_rules": [], "icons_collections": [{"id": "cb4c0bb5-5c0c-43de-aa26-6ada823f0466", "name": "NetSuite", "icons": [{"id": "797abb98-44a6-4422-952f-e19826fcdd00", "name": "NetSuite", "type": "light"}]}]}, {"id": "dfc48abc-3fd9-4456-833f-fcaa52691ccc", "name": "Stripe", "tags": [], "issuers": ["Stripe"], "match_rules": [], "icons_collections": [{"id": "755cdcde-a73e-49a1-adf4-a6cc2b85174c", "name": "Stripe", "icons": [{"id": "b4bcbfdb-661a-4e9f-805e-857e91854bde", "name": "Stripe", "type": "light"}]}]}, {"id": "dfe680b6-d728-454d-86fb-e97f19703d12", "name": "PythonAnywhere", "tags": [], "issuers": [], "match_rules": [{"text": "PythonAnywhere", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "PythonAnywhere", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6edba584-a91c-4d58-9ded-b18733083ab9", "name": "PythonAnywhere", "icons": [{"id": "569998ac-1b05-4b06-a152-244067e70144", "name": "PythonAnywhere", "type": "light"}, {"id": "6b4dd5a6-de58-45f9-801e-938fe22da2a1", "name": "PythonAnywhere", "type": "dark"}]}]}, {"id": "e0181c49-480e-4623-bbe6-6e1a3c1ae6a4", "name": "Coinify", "tags": [], "issuers": [], "match_rules": [{"text": "Coinify", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coinify", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fea5051e-9569-4299-a71f-58bb078aa662", "name": "Coinify", "icons": [{"id": "4989d350-8033-4ac6-b15f-820f9c9f786f", "name": "Coinify", "type": "dark"}, {"id": "7efb910e-dd11-467c-b99d-ee4febac4d91", "name": "Coinify", "type": "light"}]}]}, {"id": "e0305fa4-281b-4666-8d1c-a3fa80f3c58b", "name": "Repairshopr", "tags": [], "issuers": [], "match_rules": [{"text": "Repairshopr", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Repairshopr", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "10f10ce2-db50-48dc-8121-5733a485fbd3", "name": "Repairshopr", "icons": [{"id": "27ab9367-d693-44bc-8da2-fa0e12a164e8", "name": "Repairshopr", "type": "light"}, {"id": "3d4b19d9-6838-4ade-b8eb-a2cdbae4bc1f", "name": "Repairshopr", "type": "dark"}]}]}, {"id": "e07b39ba-1894-4732-ac6a-cecb71c4001b", "name": "Miro", "tags": [], "issuers": [], "match_rules": [{"text": "Miro", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Miro", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "898aa6d1-7cf1-4c53-8b1b-ba2991fa2e86", "name": "Miro", "icons": [{"id": "cf7f119f-0c37-43d0-bc06-91514b3b7d11", "name": "Miro", "type": "light"}]}]}, {"id": "e085ea95-678d-4b5d-97b4-2b7107567069", "name": "Robinhood", "tags": [], "issuers": ["Robinhood"], "match_rules": [], "icons_collections": [{"id": "6582193f-c4bb-4aa2-b7fe-6efa02bd6995", "name": "Robinhood", "icons": [{"id": "47ac04e8-1771-49da-9c8f-b7b60a7c8980", "name": "Robinhood", "type": "light"}]}]}, {"id": "e0a0a866-8269-4b7e-b659-3758ecd06100", "name": "Apple", "tags": [], "issuers": [], "match_rules": [{"text": "apple", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "90caf674-4269-4193-9749-4849f97cfb53", "name": "Apple", "icons": [{"id": "4bb70c6d-ce78-4580-9aaa-e84b6355fc47", "name": "Apple", "type": "light"}, {"id": "56919108-2ea3-4c16-9ccb-3b196c4d7347", "name": "Apple", "type": "dark"}]}]}, {"id": "e0adc0ea-8017-4fef-bb6c-505969352084", "name": "Valr", "tags": [], "issuers": [], "match_rules": [{"text": "Valr", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Valr", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ba1a9e69-f71f-41da-a843-83ff2b506e4b", "name": "Valr", "icons": [{"id": "c6f49905-cebf-4fa5-a24f-f39d39124a90", "name": "Valr", "type": "light"}]}]}, {"id": "e0d3d638-1fa2-4aa4-8242-4920bd151226", "name": "Blockchain.com", "tags": [], "issuers": ["blockchain.info"], "match_rules": [], "icons_collections": [{"id": "01f35a89-4444-4208-a405-c914340df362", "name": "Blockchain", "icons": [{"id": "f67a5aed-47dc-4487-ab7f-bdc1ffa93ec8", "name": "Blockchain", "type": "light"}]}]}, {"id": "e15848dd-88dc-4b75-9384-29fb97749177", "name": "Krystal", "tags": [], "issuers": [], "match_rules": [{"text": "Krystal", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Krystal", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cac6a9fb-b018-4f1c-b7d2-8c71013c8433", "name": "Krystal", "icons": [{"id": "34d40a28-2a56-40bc-8662-02817a76bc49", "name": "Krystal", "type": "light"}]}]}, {"id": "e186f845-bec9-498d-9446-bc8987259bfa", "name": "Name.com", "tags": [], "issuers": [], "match_rules": [{"text": "Name.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Name.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "27814220-bd4c-413d-a24c-10ec163a7700", "name": "Name.com", "icons": [{"id": "4b66f0cf-e6a0-43cb-af5b-ec0579fe0936", "name": "Name.com", "type": "light"}]}]}, {"id": "e22669e3-888a-400d-922e-11a9e4ae04c7", "name": "UpCloud", "tags": [], "issuers": [], "match_rules": [{"text": "UpCloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "UpCloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cc7b5194-c464-47a4-8197-d4f67791886d", "name": "UpCloud", "icons": [{"id": "f4b5ab07-86ee-41b1-8868-9c7134854b58", "name": "UpCloud", "type": "light"}]}]}, {"id": "e22a82e4-922f-4574-930d-1e66c3f7a055", "name": "Maharashtra Gramin Bank", "tags": [], "issuers": [], "match_rules": [{"text": "Maharashtra Gramin Bank", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Maharashtra Gramin Bank", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Maharashtra(\\+|\\s|-|_)Gramin(\\+|\\s|-|_)Bank", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Maharashtra(\\+|\\s|-|_)Gramin(\\+|\\s|-|_)Bank", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "23570fac-3986-4a02-82cc-51ee8fc69119", "name": "Maharashtra Gramin Bank", "icons": [{"id": "92e84473-9c0e-4cec-83ca-281e7fa680dc", "name": "Maharashtra Gramin Bank", "type": "light"}]}]}, {"id": "e2d0c20c-ff6c-48ed-bc21-f2d738ac0067", "name": "Hokodo", "tags": [], "issuers": ["Hokodo Dashboard"], "match_rules": null, "icons_collections": [{"id": "9304e41f-b37e-4437-aae9-8cb98cfb1652", "name": "Hokodo", "icons": [{"id": "0f09f4fc-3baf-44bb-8b28-8d2b1fc84603", "name": "Hokodo", "type": "dark"}, {"id": "242ed3d1-ef6e-4ce0-ae09-49b49a8fc439", "name": "Hokodo", "type": "light"}]}]}, {"id": "e30309c0-6975-4af4-9c9d-4b96dbcb4e40", "name": "CoinOne", "tags": [], "issuers": [], "match_rules": [{"text": "CoinOne", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinOne", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6db9522a-35a6-4d18-81a1-1d77081dd511", "name": "CoinOne", "icons": [{"id": "40a2c7f1-fddc-4a6b-8b59-d9179afc05d5", "name": "CoinOne", "type": "light"}]}]}, {"id": "e31a4c9a-5f93-4e4b-8b2d-e2eee6341737", "name": "Relay", "tags": [], "issuers": [], "match_rules": [{"text": "Relay", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Relay", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3f3d9c8b-7ef1-4aeb-b188-3beaea81bfdf", "name": "Relay", "icons": [{"id": "9e2fbc00-9746-4958-87ea-3ae10a33e8c3", "name": "Relay", "type": "light"}]}]}, {"id": "e325587d-695f-49b2-82a3-130e10640db1", "name": "Tumblr", "tags": [], "issuers": ["Tumblr"], "match_rules": [], "icons_collections": [{"id": "7e039b98-b8b9-4a7c-a3f9-2059ab85a9ea", "name": "Tumblr", "icons": [{"id": "d6701bed-a9c5-48eb-acd8-303059858dee", "name": "Tumblr", "type": "light"}]}]}, {"id": "e32cb9ed-f0a0-46e5-8011-0c8d33617adf", "name": "Tebex", "tags": [], "issuers": ["Tebex.io"], "match_rules": [], "icons_collections": [{"id": "29b478a1-d863-42de-ac32-095af746914c", "name": "Tebex.io", "icons": [{"id": "9e6d1f75-c4fc-4f52-bb07-d15bcf319958", "name": "Tebex.io", "type": "light"}]}]}, {"id": "e3522caf-0c43-4efa-adbc-9c75b8e1940f", "name": "Koofr", "tags": [], "issuers": [], "match_rules": [{"text": "Koofr", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Koofr", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f8f2478b-5407-4ce0-9ab7-b2aa0b893bd6", "name": "Koofr", "icons": [{"id": "61b9f690-f8ee-4e8b-8da8-6ea0507735ad", "name": "Koofr", "type": "light"}]}]}, {"id": "e376ec91-99a2-4771-82fa-0dbd72c82a95", "name": "Kintone", "tags": [], "issuers": [], "match_rules": [{"text": "Kintone", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Kintone", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "973d3e29-54b4-487a-8428-ba5d1b1c43c5", "name": "Kintone", "icons": [{"id": "0021d7c2-f6aa-494f-8f3a-317deb919ad9", "name": "Kintone", "type": "light"}]}]}, {"id": "e37e69db-149f-49a8-a769-651a3a2f1f6f", "name": "Purse", "tags": [], "issuers": [], "match_rules": [{"text": "Purse", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Purse", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "53d2fd49-364c-431a-86cf-c729983416a1", "name": "Purse", "icons": [{"id": "1977de4c-5039-4565-b19d-5565054259a8", "name": "Purse", "type": "dark"}, {"id": "28f8e086-5354-4f2e-8b4d-055c21df45c1", "name": "Purse", "type": "light"}]}]}, {"id": "e3a1ee7b-b689-43a7-a88c-de98c793b2a5", "name": "Zapier", "tags": [], "issuers": ["Zapier"], "match_rules": [], "icons_collections": [{"id": "7f76cd41-6022-409a-9253-e399cde29b88", "name": "Zapier", "icons": [{"id": "883ec4e4-12f1-4224-83c5-a3ce76efd710", "name": "Zapier", "type": "light"}]}]}, {"id": "e3c02bbb-3d55-4a37-823e-c4ad929c202e", "name": "Saxo Bank", "tags": [], "issuers": [], "match_rules": [{"text": "Saxo Bank", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Saxo Bank", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "364cacf5-e3f4-4dc3-876e-b6c2802cf099", "name": "Saxo Bank", "icons": [{"id": "27a9194f-95ad-441f-bfb1-f3188517aa9b", "name": "Saxo Bank", "type": "light"}]}]}, {"id": "e3d80b18-b187-40ad-a2ba-d4f35ac84110", "name": "Hint Health", "tags": [], "issuers": [], "match_rules": [{"text": "Hint Health", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hint Health", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "cb6128df-3b38-4fb8-9cc6-db94b5326b0b", "name": "Hint Health", "icons": [{"id": "35efaf1f-c243-4ba9-af7f-6190c43274f8", "name": "Hint Health", "type": "light"}]}]}, {"id": "e3e901e5-28dd-4941-8ddf-74c91858c613", "name": "DirectAdmin", "tags": [], "issuers": [], "match_rules": [{"text": "DirectAdmin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DirectAdmin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2c69cc2f-5c82-4609-ad3f-10f87d0d1fe5", "name": "DirectAdmin", "icons": [{"id": "c2ff2bc8-5093-4028-b77b-444c9228b5d8", "name": "DirectAdmin", "type": "light"}]}]}, {"id": "e40761db-a914-447f-a353-a53076734756", "name": "Miss Hosting", "tags": [], "issuers": [], "match_rules": [{"text": "Miss Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Miss Hosting", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0161d30d-5733-446c-9414-04354e868b21", "name": "Miss Hosting", "icons": [{"id": "0c1d293e-ede1-43af-8ccd-f45ea8d38815", "name": "Miss Hosting", "type": "light"}]}]}, {"id": "e4abe02a-d7a1-465f-8974-3bb073bfa5f6", "name": "Runbox", "tags": [], "issuers": [], "match_rules": [{"text": "Runbox", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Runbox", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6fa97be1-4c36-4ada-8276-814104f743fa", "name": "Runbox", "icons": [{"id": "5b56bae5-1acb-4261-9d49-b530f845bdf3", "name": "Runbox", "type": "dark"}, {"id": "8dad189e-143d-4713-8c90-81f57e6b6119", "name": "Runbox", "type": "light"}]}]}, {"id": "e4c4f37c-866e-4c30-9e02-8213a0aff7bd", "name": "Tutanota", "tags": ["mail", "email", "e-mail"], "issuers": ["Tutanota"], "match_rules": null, "icons_collections": [{"id": "856858a8-25f9-49bf-9ea6-10b07a618d1d", "name": "Tutanota", "icons": [{"id": "064c7fe5-eeb8-4459-9a4b-940b3fbe70da", "name": "Tutanota", "type": "light"}, {"id": "e0936821-f6dc-40e8-af50-fc7d4a5b8f63", "name": "Tutanota", "type": "dark"}]}]}, {"id": "e4c7d1cb-9ae4-4dbc-b258-2fcc033ab5c3", "name": "Replit", "tags": [], "issuers": ["Replit"], "match_rules": null, "icons_collections": [{"id": "a11c8ffa-44b1-47fd-b1b4-043973bd9d4d", "name": "Replit", "icons": [{"id": "d301b80f-3c05-4296-abf2-89250b2e10f4", "name": "Replit", "type": "light"}]}]}, {"id": "e4cd7c6a-570d-495f-aba7-af67bf6363f7", "name": "JumpCloud", "tags": [], "issuers": [], "match_rules": [{"text": "JumpCloud", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "JumpCloud", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "552eb7e2-2fb8-4735-a6e3-72fc0015bf14", "name": "JumpCloud", "icons": [{"id": "59935901-2197-473f-a7e6-6718b56f6677", "name": "JumpCloud", "type": "dark"}, {"id": "6243bd2d-cbb6-44db-a0e1-2c34e58d2f59", "name": "JumpCloud", "type": "light"}]}]}, {"id": "e4d9664e-c6b9-42b4-a339-8eec92cbadca", "name": "NameSilo.com", "tags": [], "issuers": [], "match_rules": [{"text": "NameSilo.com", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "NameSilo.com", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "057319ee-bac5-4382-86b9-7dc4bbad6717", "name": "NameSilo.com", "icons": [{"id": "899ceef5-0fd9-46d3-9ed9-2f0711671cf4", "name": "NameSilo.com", "type": "light"}]}]}, {"id": "e4effd58-8e12-4e34-bb70-7e9d3008aede", "name": "Wikipedia", "tags": [], "issuers": [], "match_rules": [{"text": "Wikipedia", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Wikipedia", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2897c31f-95e3-470b-a5e9-e2bfb1ba5d40", "name": "Wikipedia", "icons": [{"id": "134cbe61-00c5-44ee-80c3-0c525da30434", "name": "Wikipedia", "type": "light"}, {"id": "b32c86b6-adcb-4898-92bc-cbc01692b729", "name": "wikipedia", "type": "dark"}]}]}, {"id": "e51103db-904d-4c32-8295-b4b270eb87c7", "name": "Cliniko", "tags": [], "issuers": [], "match_rules": [{"text": "Cliniko", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cliniko", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2497f9df-245f-48a1-85e2-35b553e3000a", "name": "Cliniko", "icons": [{"id": "32737421-8b09-46bb-8b9d-ee59a2a46f68", "name": "Cliniko", "type": "light"}]}]}, {"id": "e5128fc7-eb05-47fc-8656-249cb3ab1a2a", "name": "Finanzblick", "tags": [], "issuers": [], "match_rules": [{"text": "Finanzblick", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Finanzblick", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ccccb3ef-ccba-41b4-a9e3-71e739e384ef", "name": "Finanzblick", "icons": [{"id": "d5ba99af-e0de-456d-8efc-2158fcbcd713", "name": "Finanzblick", "type": "light"}]}]}, {"id": "e53b287d-7946-462c-926e-e0ace104596f", "name": "Notejoy", "tags": [], "issuers": [], "match_rules": [{"text": "Notejoy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Notejoy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "716b89de-67b1-4b29-8230-da6c03423c98", "name": "Notejoy", "icons": [{"id": "71d8cd51-5dd9-4e19-a847-4aa394b83cb1", "name": "Notejoy", "type": "light"}]}]}, {"id": "e5618b78-9499-4e14-979f-a0765de153f1", "name": "You Need A Budget (YNAB)", "tags": [], "issuers": [], "match_rules": [{"text": "You Need A Budget (YNAB)", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "You Need A Budget (YNAB)", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "5373c9ce-da66-4c89-8950-e23c007f5174", "name": "You Need A Budget (YNAB)", "icons": [{"id": "51bb61b7-bc6a-4289-8f5c-302afd683e33", "name": "You Need A Budget (YNAB)", "type": "light"}]}]}, {"id": "e5ae530b-546d-4b49-a1e0-c7701f8a9640", "name": "BlockFi", "tags": [], "issuers": [], "match_rules": [{"text": "BlockFi", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BlockFi", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b3cfbcfe-51e0-4cd4-a853-44f41bd19d2e", "name": "BlockFi", "icons": [{"id": "f5485b42-3dee-495a-ae5a-6ea68109d5e0", "name": "BlockFi", "type": "light"}]}]}, {"id": "e5c0b179-b918-48bf-a946-cb362c7abb68", "name": "Kinsta", "tags": [], "issuers": [], "match_rules": [{"text": "Kinsta", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Kinsta", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9d02a9b4-661d-483b-8a62-3b110ec0000a", "name": "Kinsta", "icons": [{"id": "ab5d686f-4abf-4144-9e7e-dca78dc314e9", "name": "Kinsta", "type": "light"}, {"id": "faecd61a-f735-44c1-9955-f7784cd438dc", "name": "Kinsta", "type": "dark"}]}]}, {"id": "e5dee7b9-c921-41ed-8b24-e74c6b72daa8", "name": "Square Enix", "tags": [], "issuers": ["Square Enix ID"], "match_rules": [], "icons_collections": [{"id": "02b0a535-36c4-46d3-9273-22dbf5236ce8", "name": "Square Enix", "icons": [{"id": "774a16cb-1896-4cb4-85ce-cd5e779e7712", "name": "Square Enix", "type": "light"}, {"id": "a91ec006-271a-4c65-ad6e-6a9a4a322ae7", "name": "Square Enix", "type": "dark"}]}]}, {"id": "e6855fef-9e6f-4636-93d6-ecfec445350a", "name": "Sendinblue", "tags": [], "issuers": [], "match_rules": [{"text": "Sendinblue", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sendinblue", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0054814b-7f9e-42fe-8b02-1576e5d255f6", "name": "Sendinblue", "icons": [{"id": "a69048d1-53c2-41fa-a90a-71d44e262251", "name": "Sendinblue", "type": "light"}]}]}, {"id": "e6c6261f-da7f-4f2f-a34a-65bbff91611f", "name": "Timetastic", "tags": [], "issuers": [], "match_rules": [{"text": "Timetastic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Timetastic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a552bbe1-90c1-4335-9ca9-7090176cc3ac", "name": "Timetastic", "icons": [{"id": "ab30ea5c-706b-4842-b14b-22361013e630", "name": "Timetastic", "type": "light"}]}]}, {"id": "e6caba64-cf95-4edd-a53c-9c9549672d3b", "name": "Mercury Cash", "tags": [], "issuers": [], "match_rules": [{"text": "Mercury Cash", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mercury Cash", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "89676e6d-042e-4f38-b2a3-40a94491fce0", "name": "Mercury Cash", "icons": [{"id": "2701ae60-cfc3-4724-b475-30d37cf109b5", "name": "Mercury Cash", "type": "light"}]}]}, {"id": "e6ccc0e1-82c7-424f-b8ba-31c779c8e530", "name": "CloudBees", "tags": [], "issuers": [], "match_rules": [{"text": "CloudBees", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CloudBees", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f1d88646-6683-4610-a316-de6490a70511", "name": "CloudBees", "icons": [{"id": "8a8e486a-f928-43f5-9274-9b7f105f4a0d", "name": "CloudBees", "type": "light"}]}]}, {"id": "e6f9b440-edea-4d3e-ad2f-0e2c4fe7161a", "name": "Smarkets", "tags": [], "issuers": [], "match_rules": [{"text": "Smarkets", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Smarkets", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "08e2f10e-75f5-4a18-8c73-401f02084369", "name": "Smarkets", "icons": [{"id": "3be7945a-0f6c-473f-a76a-31f4171819ff", "name": "Smarkets", "type": "dark"}, {"id": "53816f0c-12bb-4e8d-9c6c-821499a440ed", "name": "Smarkets", "type": "light"}]}]}, {"id": "e709dc4b-2a72-4f6f-9c8a-6b3dbebc42e5", "name": "BeamPro", "tags": [], "issuers": ["Beam"], "match_rules": [], "icons_collections": [{"id": "83bfbbc9-3399-4556-8724-3fd1ea46b97a", "name": "BeamPro", "icons": [{"id": "e68a7262-daf1-4a7c-bb24-255553195f5c", "name": "BeamPro", "type": "light"}]}]}, {"id": "e75bd06f-6821-4c10-8bce-68beed119863", "name": "Larian Studios", "tags": [], "issuers": [], "match_rules": [{"text": "Larian Studios", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Larian Studios", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Larian(\\+|\\s|-|_)Studios", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Larian(\\+|\\s|-|_)Studios", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "d66f1d50-f602-448e-9d45-a6c951182751", "name": "Larian Studios", "icons": [{"id": "58703cc7-24d2-429c-845d-ffd1e872e22e", "name": "Larian Studios", "type": "light"}]}]}, {"id": "e766b17d-8513-4b4c-9cd6-b7765ef4acc7", "name": "CoinLoan", "tags": [], "issuers": [], "match_rules": [{"text": "CoinLoan", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinLoan", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "84b89b07-8f9b-456a-ab4a-c15f75c96a59", "name": "CoinLoan", "icons": [{"id": "961a11f0-a95b-4cb1-83d4-66ad0bee9790", "name": "CoinLoan", "type": "light"}]}]}, {"id": "e7672f3f-2760-47a9-b0a0-516b8d59695d", "name": "University of Delaware", "tags": [], "issuers": [], "match_rules": [{"text": "University of Delaware", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Delaware", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2cf4fda0-548d-4dfb-9afb-4d76a46da81d", "name": "University of Delaware", "icons": [{"id": "bb9e9419-aa8c-48a1-90c2-3abfd2db5c0f", "name": "University of Delaware", "type": "light"}]}]}, {"id": "e788f163-f596-4252-8748-480d19b57871", "name": "easyDNS", "tags": [], "issuers": [], "match_rules": [{"text": "easyDNS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "easyDNS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4a4886d3-c503-4de7-9f2c-f6f845eaabb0", "name": "easyDNS", "icons": [{"id": "16b52a19-772d-4f94-b48f-a2325e9993ec", "name": "easyDNS", "type": "light"}]}]}, {"id": "e7d3967d-7f1a-47db-9e7c-7aeafe0731f1", "name": "Rollbar", "tags": [], "issuers": [], "match_rules": [{"text": "Rollbar", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rollbar", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c38e5c0f-782d-4ada-85b2-d801fd4e1f6f", "name": "Rollbar", "icons": [{"id": "8fbfa536-cd15-4d85-9975-40be7a014cdc", "name": "Rollbar", "type": "light"}]}]}, {"id": "e82b02e9-84bb-4af3-b66e-09928da55945", "name": "Liquid Web", "tags": [], "issuers": [], "match_rules": [{"text": "Liquid Web", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Liquid Web", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "02a52d7a-b885-4826-8f86-0801f768f58f", "name": "Liquid Web", "icons": [{"id": "c0abd638-300b-4f32-b596-1dbca603f90e", "name": "Liquid Web", "type": "light"}]}]}, {"id": "e840c397-bbc5-42e1-8d35-e9ee78f919e8", "name": "Mail.com", "tags": [], "issuers": ["Mail.com"], "match_rules": [{"text": "Mail.com", "field": "issuer", "matcher": "starts_with", "ignore_case": true}, {"text": "Mail.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "814849a3-c6da-49ac-b53b-d64c3ba80d92", "name": "Mail.com", "icons": [{"id": "d03c1ece-a9f9-408b-bb5b-e12d571ef252", "name": "Mail.com", "type": "light"}]}]}, {"id": "e8622066-1148-45ab-8c89-bb81432119a2", "name": "Jovia Financial", "tags": [], "issuers": [], "match_rules": [{"text": "Jovia Financial", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Jovia Financial", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f162831a-4f49-4512-8deb-06456ec4e123", "name": "Jovia Financial", "icons": [{"id": "b1d2d5fa-eb03-47cf-9a5c-936a19dab806", "name": "Jovia Financial", "type": "light"}]}]}, {"id": "e8937e59-d7df-4020-a345-0b2b638805c3", "name": "BullionVault", "tags": [], "issuers": [], "match_rules": [{"text": "BullionVault", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BullionVault", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "95d2ec85-accb-46c6-b71d-1b0b38b51d8e", "name": "BullionVault", "icons": [{"id": "c0465f36-19ce-4a96-8ee6-b76544f5740c", "name": "BullionVault", "type": "light"}]}]}, {"id": "e899321b-2aa9-44c6-b619-5aacb7955954", "name": "CoinList", "tags": [], "issuers": ["CoinList"], "match_rules": [], "icons_collections": [{"id": "d5caa96f-fc26-4b31-94e7-49a17de8080e", "name": "CoinList", "icons": [{"id": "57d3ea0a-967a-4b35-99f1-996e1f6ab611", "name": "CoinList", "type": "light"}]}]}, {"id": "e8a2c1f2-fc4a-4df2-8076-99575cc27efb", "name": "\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 (Gosuslugi)", "tags": [], "issuers": [], "match_rules": [{"text": "\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 (Gosuslugi)", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 (Gosuslugi)", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "04529752-ef96-4d58-85d7-aa610d99db86", "name": "\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 (Gosuslugi)", "icons": [{"id": "d952d7d4-89cf-4be8-950a-3c31a1c648b0", "name": "\u0413\u043e\u0441\u0443\u0441\u043b\u0443\u0433\u0438 (Gosuslugi)", "type": "light"}]}]}, {"id": "e8cf90a1-736d-457a-8e28-8253d1e4a373", "name": "Raindrop.io", "tags": [], "issuers": ["Raindrop.io"], "match_rules": null, "icons_collections": [{"id": "3d72fa6a-5683-47b1-83d9-33abfa842ac7", "name": "Raindrop.io", "icons": [{"id": "ed5e7a91-a56c-403a-9c3c-cf785fba0f60", "name": "Raindrop.io", "type": "light"}]}]}, {"id": "e8ee95b5-5db9-4c41-a97e-0c6c272e1f47", "name": "E.ON", "tags": [], "issuers": [], "match_rules": [{"text": "E.ON", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "E.ON", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "74ccbab4-9ed1-49c4-a3cc-491895eebbeb", "name": "E.ON", "icons": [{"id": "0036e875-a152-440a-859e-7b0892b7fa80", "name": "E.ON", "type": "light"}]}]}, {"id": "e8fe47dd-95b6-4ab9-b3fc-2f82aa8e8a89", "name": "Luno", "tags": [], "issuers": [], "match_rules": [{"text": "Luno", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Luno", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "851a231d-64e9-4e4d-a05d-1c219e5b3f27", "name": "Luno", "icons": [{"id": "c0f59bb3-ca3e-4717-8088-6ed743a3c5ee", "name": "Luno", "type": "light"}]}]}, {"id": "e9224ec7-0efb-431f-8362-c6569a91268d", "name": "Cryptowatch", "tags": [], "issuers": [], "match_rules": [{"text": "Cryptowatch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cryptowatch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b7ad8da7-440b-4bc8-b31e-da69436d1969", "name": "Cryptowatch", "icons": [{"id": "0d9fdf70-5d73-4b19-8567-4ef6fb56bbee", "name": "Cryptowatch1", "type": "light"}]}]}, {"id": "e9ba90a2-6ddf-458e-a9d7-d1f13b0fd3a0", "name": "Meister", "tags": [], "issuers": [], "match_rules": [{"text": "Meister", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Meister", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ff9e3674-b477-4cd6-9115-c08a119e0c0f", "name": "Meister", "icons": [{"id": "f8ba7121-bd31-4a83-92a3-e69be5d033e6", "name": "Meister", "type": "light"}]}]}, {"id": "e9c7e9ba-2269-42f2-a532-7d3ecbc34289", "name": "mailbox.org", "tags": [], "issuers": [], "match_rules": [{"text": "mailbox.org", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "mailbox.org", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "db778165-44f2-4aea-a111-1f439b6f9d47", "name": "mailbox.org", "icons": [{"id": "fd8fee5b-7c90-4d9c-9e55-fe14d14cc34a", "name": "mailbox.org", "type": "light"}]}]}, {"id": "ea4394e0-779f-49fc-a6d5-17e7212bda51", "name": "Make", "tags": [], "issuers": [], "match_rules": [{"text": "Make", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Make", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "71c2b71e-df19-4911-8154-af4e9a478fbd", "name": "Make", "icons": [{"id": "5dff3c25-3318-4e19-aa53-6659e61ef44e", "name": "Make", "type": "light"}]}]}, {"id": "ea543918-c254-443b-9cca-33db8aa1a21d", "name": "TrendMicro", "tags": [], "issuers": ["Trend Micro"], "match_rules": [], "icons_collections": [{"id": "0a26cdeb-a53b-411c-bbcd-48d73f70d3cf", "name": "TrendMicro", "icons": [{"id": "42f2413e-902a-4af4-919f-e91c167ca66f", "name": "TrendMicro", "type": "light"}]}]}, {"id": "ea7cd947-35fb-4e7a-b639-06ba51be2a0c", "name": "SendSafely", "tags": [], "issuers": [], "match_rules": [{"text": "SendSafely", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SendSafely", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "bd5c9789-92bf-4741-b706-057ed51c85ce", "name": "SendSafely", "icons": [{"id": "e1ba5881-2987-49c9-9203-1cc00a52b6bc", "name": "SendSafely", "type": "light"}]}]}, {"id": "ea9a36fc-711d-48d7-9b51-0e4bdfd7a00d", "name": "Coins.ph", "tags": [], "issuers": [], "match_rules": [{"text": "Coins.ph", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coins.ph", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1e740253-0b33-4feb-a825-c4387dcc41d4", "name": "Coins.ph", "icons": [{"id": "0b8032fe-b6d7-456d-8d0d-383577c7a1fa", "name": "Coins.ph", "type": "light"}]}]}, {"id": "eb406cfb-bc68-4efc-947c-976771f5377f", "name": "Pivotal Tracker", "tags": [], "issuers": [], "match_rules": [{"text": "Pivotal Tracker", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pivotal Tracker", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "8b4fbc8d-5b1b-4359-9c57-2c33a315cbcf", "name": "Pivotal Tracker", "icons": [{"id": "c233dcf7-92c9-40e6-9be1-da959f503820", "name": "Pivotal Tracker", "type": "light"}]}]}, {"id": "eb535c31-b47c-4a6d-9b7c-45b7716e1447", "name": "YouHodler", "tags": [], "issuers": [], "match_rules": [{"text": "YouHodler", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "YouHodler", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "98d4685a-4e7c-465d-930e-5b11ccfbe944", "name": "YouHodler", "icons": [{"id": "f228d616-30fd-4904-801f-e7b4a262086b", "name": "YouHodler", "type": "light"}]}]}, {"id": "eb82164f-aa83-44af-a943-387a0bb19c08", "name": "CoinSpot", "tags": [], "issuers": [], "match_rules": [{"text": "CoinSpot", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f94290c5-970e-483b-9a7d-f4fe02706fd8", "name": "CoinSpot", "icons": [{"id": "1529af27-16b0-4b84-99b0-36fe5cb86b1b", "name": "CoinSpot", "type": "light"}]}]}, {"id": "eb93e63c-bab4-4e1e-8cff-916a33ba760a", "name": "Fintegri", "tags": [], "issuers": ["Fintegri"], "match_rules": [], "icons_collections": [{"id": "ffad6e64-14f5-4b1f-b2aa-41232a4eedf4", "name": "Fintegri", "icons": [{"id": "4ff527ac-78f6-4218-9e79-0796848afc3a", "name": "Fintegri", "type": "light"}]}]}, {"id": "ebb4d08f-4a28-4db8-8395-a929b9e449a7", "name": "Amazon Pay", "tags": [], "issuers": [], "match_rules": [{"text": "amazon pay", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "amazon pay", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "amazon+pay", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "amazon+pay", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b756b32-40d3-4ae0-b8f8-1b81308dbeaf", "name": "Amazon Pay", "icons": [{"id": "36a8a180-e488-409f-ab86-fea759a25b93", "name": "Amazon Pay", "type": "dark"}, {"id": "e1168770-7673-420a-ab58-3e4a5ccccd02", "name": "Amazon Pay", "type": "light"}]}]}, {"id": "ebe7dc06-c1d9-45ad-9bb2-16c7e1685c6d", "name": "Stackfield", "tags": [], "issuers": [], "match_rules": [{"text": "Stackfield", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Stackfield", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "98e17353-a3a1-42c1-b02c-ab168825ad69", "name": "Stackfield", "icons": [{"id": "14ea97e5-6a2d-4f6f-9163-f7534699e485", "name": "Stackfield", "type": "light"}]}]}, {"id": "ec0d13e2-3479-49fb-aeaa-67dab162cadd", "name": "LastPass", "tags": [], "issuers": ["LastPass"], "match_rules": [], "icons_collections": [{"id": "7d4e81cd-ec45-491d-be61-18c0652fcf8b", "name": "LastPass", "icons": [{"id": "0cd2ec42-409a-4b27-8bdc-193b876c7435", "name": "LastPass", "type": "dark"}, {"id": "de6c9163-ab17-412e-a8a3-211c282417bf", "name": "LastPass", "type": "light"}]}]}, {"id": "ec1393a0-9205-4706-ad58-193cf8c2fbc1", "name": "HackerOne", "tags": [], "issuers": [], "match_rules": [{"text": "HackerOne", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "HackerOne", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ec0cf3cf-54aa-47f0-add2-16602d1d2d89", "name": "HackerOne", "icons": [{"id": "badc429f-4629-43ed-a2a4-58198698f185", "name": "HackerOne", "type": "light"}, {"id": "f6eb4f87-dfa9-497d-bc08-57377fe43777", "name": "HackerOne", "type": "dark"}]}]}, {"id": "ec30202b-98d9-440f-b376-1635efd8a67f", "name": "RunCloud", "tags": [], "issuers": ["RunCloud"], "match_rules": null, "icons_collections": [{"id": "96b293b5-f4ee-4201-93a5-81c0b73581bf", "name": "RunCloud", "icons": [{"id": "ec5f581d-82a7-406a-9363-34a8b4bf3b5e", "name": "RunCloud", "type": "light"}, {"id": "fee0fbd2-e23a-45d3-87c4-fd17afafc543", "name": "RunCloud", "type": "dark"}]}]}, {"id": "ecbfa345-a65a-4516-8a8a-747a12703b7f", "name": "ALL-INKL.COM", "tags": [], "issuers": [], "match_rules": [{"text": "all-inkl", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "all-inkl", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "b34a23f8-accc-43d6-8267-77b3f86c2b60", "name": "ALL-INKL.COM", "icons": [{"id": "4cd5eb8e-1e5c-40ab-8f44-217485b225e1", "name": "ALL-INKL.COM", "type": "light"}]}]}, {"id": "ecf415c1-db26-43f9-a4df-bbbacbf1ae96", "name": "Xplenty", "tags": [], "issuers": [], "match_rules": [{"text": "Xplenty", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Xplenty", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4b2cbfe4-1a82-46e0-9895-73418ea33562", "name": "Xplenty", "icons": [{"id": "a4b3dbbd-5dd6-4d65-ad24-dfc891098ff2", "name": "Xplenty", "type": "light"}]}]}, {"id": "ed5653f7-109f-4585-b60d-90f8702dfdfa", "name": "Hushmail", "tags": [], "issuers": [], "match_rules": [{"text": "Hushmail", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hushmail", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e4a960d1-971e-4330-be1d-e6f9247941bc", "name": "Hushmail", "icons": [{"id": "0373749e-897d-4049-a89c-4482a84fbac3", "name": "Hushmail", "type": "dark"}, {"id": "20c1cdaa-a6ee-4e64-935d-122a446391f2", "name": "Hushmail", "type": "light"}]}]}, {"id": "ed5d852e-e2e5-4c96-b640-7fbbfb4165b0", "name": "Passwarden", "tags": [], "issuers": [], "match_rules": [{"text": "Passwarden", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Passwarden", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c26b2c77-4015-4ab1-a796-c3d99fbdbab9", "name": "Passwarden", "icons": [{"id": "01d407e7-f8f3-4f62-a326-28d6b7b09baa", "name": "Passwarden", "type": "light"}]}]}, {"id": "ed64d5af-2641-465f-9936-4c5bc6075695", "name": "Plex", "tags": [], "issuers": ["Plex"], "match_rules": [], "icons_collections": [{"id": "a29152d6-0ac4-41c6-8ce8-a84c4d87ebef", "name": "Plex", "icons": [{"id": "2b72103a-751d-4363-a436-587acb2a7f77", "name": "Plex", "type": "dark"}, {"id": "8237f747-692a-4254-9031-f297e958b74b", "name": "Plex", "type": "light"}]}]}, {"id": "edab0398-76da-4b1f-b71c-751a20209fa9", "name": "Brick Hill", "tags": [], "issuers": [], "match_rules": [{"text": "BrickHill", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BrickHill", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Brick Hill", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Brick Hill", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "13b54ba3-33ff-454f-8cda-e538ebbec5b5", "name": "Brick Hill", "icons": [{"id": "0e222258-ee92-4a72-ad8a-4bf2958a92ff", "name": "Brick Hill", "type": "light"}]}]}, {"id": "edf4885f-6c13-4c3d-8aa8-378f9177879d", "name": "MEGA", "tags": [], "issuers": ["MEGA"], "match_rules": [], "icons_collections": [{"id": "2fa5a5bd-ff1b-41da-9109-25f9ea49f56f", "name": "MEGA", "icons": [{"id": "237924f1-5e9b-453e-81be-ab38e14a2c95", "name": "MEGA", "type": "light"}]}]}, {"id": "edf70ad0-18f6-4b38-871a-b128bea8b725", "name": "East Carolina University", "tags": ["eca"], "issuers": [], "match_rules": [{"text": "East Carolina University", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "East Carolina University", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d59f32d3-7ba3-4d92-8566-a81285f1aed2", "name": "East Carolina University", "icons": [{"id": "3f592182-ad10-4272-8f32-2b9726471283", "name": "East Carolina University", "type": "dark"}, {"id": "a3ab004b-631a-4c86-a63a-3acb463a78c5", "name": "East Carolina University", "type": "light"}]}]}, {"id": "ee0b83ee-3920-43fa-83fd-6dbe88c5578d", "name": "Server.pro", "tags": [], "issuers": [], "match_rules": [{"text": "Server.pro", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Server.pro", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "eda4a2e6-f39f-4afd-bc0a-4b5cd974c447", "name": "Server.pro", "icons": [{"id": "a618159a-1756-4733-b173-88f0020036d8", "name": "Server.pro", "type": "light"}]}]}, {"id": "ee369040-4ac2-4ceb-9569-1b1c65288a8b", "name": "GoDaddy", "tags": [], "issuers": [], "match_rules": [{"text": "GoDaddy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "51c99cc4-9c19-4d9d-8ccb-41c630f5e977", "name": "GoDaddy", "icons": [{"id": "3438a65b-25c3-489a-9a8b-96bce6f2306c", "name": "GoDaddy", "type": "light"}]}]}, {"id": "ee576944-e5f6-4ad1-8840-6c7ad8eb4715", "name": "3Commas", "tags": [], "issuers": ["3Commas"], "match_rules": null, "icons_collections": [{"id": "8541f4d5-513f-46e8-bc90-cc13f0764381", "name": "3Commas", "icons": [{"id": "75d3dd39-534f-4875-98fe-3bfdb5a5ea16", "name": "3commas", "type": "light"}]}]}, {"id": "ee678254-fb1e-40ce-9958-862887841a06", "name": "Scripting Helpers", "tags": [], "issuers": [], "match_rules": [{"text": "Scripting Helpers", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Scripting Helpers", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "917db66b-9fdf-46d6-a43a-0617be21c2f5", "name": "Scripting Helpers", "icons": [{"id": "e07bfc08-e279-429a-b927-54437beaa1db", "name": "Scripting Helpers", "type": "light"}]}]}, {"id": "ee8b898b-f406-4de9-93b6-a9217fa48481", "name": "Stiftung Warentest", "tags": [], "issuers": [], "match_rules": [{"text": "Stiftung Warentest", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Stiftung Warentest", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "63243b77-816b-4f1c-9ccd-092962f2235d", "name": "Stiftung Warentest", "icons": [{"id": "8caefdae-17d5-4af4-9ffa-edfd2027b96a", "name": "Stiftung Warentest", "type": "light"}]}]}, {"id": "ee990e63-4e8d-4aa5-be25-fd945108aaac", "name": "Etsy", "tags": [], "issuers": ["Etsy"], "match_rules": [], "icons_collections": [{"id": "3d19f274-79d5-450e-9885-e71129cb640e", "name": "Etsy", "icons": [{"id": "c5a4063d-86b8-46d7-a189-37c930150950", "name": "Etsy", "type": "light"}]}]}, {"id": "eed0167a-c72d-4a0f-80c1-5ff560b513cf", "name": "Gitea", "tags": [], "issuers": ["Gitea"], "match_rules": [], "icons_collections": [{"id": "1b4d77ed-6dc8-48ec-8382-161f2a1eaf00", "name": "Gitea", "icons": [{"id": "ab71e699-20e8-497c-a820-0551a08f092f", "name": "Gitea", "type": "light"}]}]}, {"id": "ef153134-36a5-4550-97a0-65f13790359c", "name": "Checkfront", "tags": [], "issuers": [], "match_rules": [{"text": "Checkfront", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Checkfront", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9116d5fb-116d-464a-b0c5-730ffdd81473", "name": "Checkfront", "icons": [{"id": "1b075ded-d169-494f-880f-c5dcf66bb868", "name": "Checkfront", "type": "light"}]}]}, {"id": "ef56a8ce-ae58-4327-befe-060e010bebb5", "name": "Prostocash", "tags": [], "issuers": [], "match_rules": [{"text": "Prostocash", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Prostocash", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "55e850b1-8b39-47c2-8a99-dd0e28a3e8ab", "name": "Prostocash", "icons": [{"id": "fde6cb0e-a16d-4b14-8636-93f34bbe2913", "name": "Prostocash", "type": "light"}]}]}, {"id": "ef68a01c-9118-429b-a68f-f483a749a61d", "name": "Rejoiner", "tags": [], "issuers": [], "match_rules": [{"text": "Rejoiner", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Rejoiner", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "4ab958d7-18ba-47f2-a0d3-db8bf65f0816", "name": "Rejoiner", "icons": [{"id": "1246301f-5ee6-461e-8021-8d981c8f1124", "name": "Rejoiner", "type": "light"}]}]}, {"id": "efe98f26-b2d7-49e3-809e-a8aae8c913b5", "name": "Technische Universit\u00e4t Berlin", "tags": [], "issuers": [], "match_rules": [{"text": "Technische Universit\u00e4t Berlin", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Technische Universit\u00e4t Berlin", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "242322c6-dbb8-40f1-b83e-fa926f4ab4d0", "name": "Technische Universit\u00e4t Berlin", "icons": [{"id": "60815e57-2990-42d9-9915-af97f97e4db2", "name": "Technische Universit\u00e4t Berlin", "type": "light"}]}]}, {"id": "f002abd0-fb0b-412d-a8a2-aa072e295f88", "name": "Tessian", "tags": [], "issuers": [], "match_rules": [{"text": "Tessian", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Tessian", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d42bba17-706f-4179-8d4c-c8506a1be809", "name": "Tessian", "icons": [{"id": "a85edeed-3741-44f0-9b80-bb7db0ba3e08", "name": "Tessian", "type": "light"}]}]}, {"id": "f014153d-c667-4add-a05d-c3fa6d6e9561", "name": "American Century Investments", "tags": [], "issuers": [], "match_rules": [{"text": "American Century Investments", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "American Century Investments", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e43cfe9c-4875-4c29-8ee4-f0efbcd0fefc", "name": "American Century Investments", "icons": [{"id": "4cfd0674-7d3b-4949-8c70-f46195f848b1", "name": "American Century Investments", "type": "light"}]}]}, {"id": "f028ce41-346f-48a4-b83c-50a51f2d701e", "name": "Choice", "tags": [], "issuers": ["Choice By Kingdom Trust"], "match_rules": [], "icons_collections": [{"id": "a85b05bc-2a16-4c57-8a08-17e6c7dbc5f4", "name": "Choice", "icons": [{"id": "90550d62-7e80-45ae-8b35-5ce88c3cbc96", "name": "Choice", "type": "light"}, {"id": "c20367ae-34a4-429a-8959-f938a2e73a55", "name": "Choice", "type": "dark"}]}]}, {"id": "f029f72c-0b3d-4a20-8be7-1e6654a205d5", "name": "ISACA", "tags": [], "issuers": [], "match_rules": [{"text": "ISACA", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "ISACA", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "3be403fb-8f08-44d9-af95-0947a594526b", "name": "ISACA", "icons": [{"id": "619b5a5d-86ae-489b-bf32-532c9d14126e", "name": "ISACA", "type": "light"}, {"id": "649b34db-7304-47e7-afbd-193ccedac155", "name": "ISACA", "type": "dark"}]}]}, {"id": "f0b52bd0-9d8d-43d1-954d-95e8950d607e", "name": "Cryptonator", "tags": [], "issuers": [], "match_rules": [{"text": "Cryptonator", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cryptonator", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f77608c2-c56e-4fe8-aadc-5d088b7f2465", "name": "Cryptonator", "icons": [{"id": "d13650b8-a005-4f66-9a20-0e0c2db47395", "name": "Cryptonator", "type": "light"}]}]}, {"id": "f0dd74a7-28fb-4c77-9541-3d2a2df53268", "name": "TradingView", "tags": [], "issuers": ["TradingView"], "match_rules": [], "icons_collections": [{"id": "a0dd2706-8912-4e35-bf7d-8a31b310b323", "name": "TradingView", "icons": [{"id": "461627c7-a4a9-469a-997e-7e4d7700bd1c", "name": "TradingView", "type": "light"}, {"id": "cbcd3778-2089-4e09-adea-770846d6bef4", "name": "TradingView", "type": "dark"}]}]}, {"id": "f0f1b8da-8838-4629-962c-9e4eee5fec58", "name": "Hevo Data", "tags": [], "issuers": [], "match_rules": [{"text": "Hevo Data", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Hevo Data", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "03e9ff66-a96d-4413-a12a-667b8a9caade", "name": "Hevo Data", "icons": [{"id": "404f500c-97d0-4fd1-8d7f-643276475317", "name": "Hevo Data", "type": "light"}]}]}, {"id": "f118573d-40e8-46f1-a96f-3f1439fadcd4", "name": "AltoIRA", "tags": [], "issuers": [], "match_rules": [{"text": "AltoIRA", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "AltoIRA", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ddb9c0a0-0692-4baa-bb39-7f80e06f7e66", "name": "AltoIRA", "icons": [{"id": "49a3cd7b-6e26-4608-b60f-94e76e3804bf", "name": "AltoIRA", "type": "light"}]}]}, {"id": "f13f2163-b024-4db7-baaa-8d33e60dd654", "name": "Vivup Benefits", "tags": [], "issuers": [], "match_rules": [{"text": "Vivup Benefits", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Vivup Benefits", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "fc96cc55-0de6-449c-b840-2b145399b581", "name": "Vivup Benefits", "icons": [{"id": "5a5e76fc-c7e4-472d-b4f7-1bddee114ca5", "name": "Vivup Benefits", "type": "light"}]}]}, {"id": "f15d2255-4bcd-4943-a0ae-705d96df97ee", "name": "Credly", "tags": [], "issuers": [], "match_rules": [{"text": "Credly", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Credly", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aa1a5c28-f93d-4a61-b0d1-94a412860491", "name": "Credly", "icons": [{"id": "2e90b63c-47a5-4532-a926-3f281f0f0d28", "name": "Credly", "type": "light"}]}]}, {"id": "f168f718-41d6-4320-99ce-18540f0ef945", "name": "Cloudcone", "tags": [], "issuers": ["Cloudcone"], "match_rules": null, "icons_collections": [{"id": "96b32d03-4513-4b24-ad16-bfa8e0f65243", "name": "Cloudcone", "icons": [{"id": "1624169a-1e52-4fe8-9476-1abfb09932ce", "name": "Cloudcone", "type": "light"}]}]}, {"id": "f17edf5d-bd7f-4ecc-8445-efec4e9e7593", "name": "Mintos", "tags": [], "issuers": [], "match_rules": [{"text": "Mintos", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mintos", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0d3e1d87-06ab-4e79-8cf5-a08c7940a5b1", "name": "Mintos", "icons": [{"id": "3d4ed967-8b43-4b5a-9f43-219708f28a17", "name": "Mintos", "type": "light"}]}]}, {"id": "f1c77692-9282-495d-913a-ef5c5996ae44", "name": "WireGuard", "tags": [], "issuers": [], "match_rules": [{"text": "wireguard.com", "field": "label", "matcher": "starts_with", "ignore_case": true}], "icons_collections": [{"id": "bb9da84a-2b56-4160-b2ac-cef537a20e4f", "name": "WireGuard", "icons": [{"id": "3631ce58-59a5-4a24-978c-1f34cb26dcc7", "name": "WireGuard", "type": "light"}]}]}, {"id": "f1f33335-c739-48ee-8205-4b5bd2d37162", "name": "Kerio", "tags": [], "issuers": ["kerio"], "match_rules": null, "icons_collections": [{"id": "f49efc49-cc3a-4ccd-b796-e4cf38e0174f", "name": "Kerio", "icons": [{"id": "9ef5a5fa-9539-4be1-a540-61cc65a38614", "name": "Kerio", "type": "dark"}, {"id": "fbb33a2b-a9fe-4863-9e8b-2ae387920129", "name": "Kerio", "type": "light"}]}]}, {"id": "f2425ecc-f42a-4f0f-8d39-254fc7ae35ba", "name": "Namecheap", "tags": [], "issuers": ["Namecheap"], "match_rules": [], "icons_collections": [{"id": "5c80186d-e0ed-4d34-b27d-71ba52e897cf", "name": "Namecheap", "icons": [{"id": "8a1ee3db-e42c-4c5f-b7c6-7aa85fe8f800", "name": "Namecheap", "type": "light"}]}]}, {"id": "f27af1a5-53fc-44ce-80ea-8fa8c9ca04bc", "name": "F-Secure", "tags": [], "issuers": ["F-Secure"], "match_rules": [], "icons_collections": [{"id": "758f71eb-25e7-49e3-8a83-f39a7c24dcd7", "name": "F-Secure", "icons": [{"id": "1025f4c6-cab2-49c8-956a-40d7b2cd9071", "name": "F-Secure", "type": "light"}, {"id": "13e5f358-df76-46ad-8e4c-368a83698d9f", "name": "F-Secure", "type": "dark"}]}]}, {"id": "f2beee5d-1df3-4a57-ad58-0417dbea3725", "name": "Meta", "tags": ["oculus"], "issuers": ["Meta"], "match_rules": null, "icons_collections": [{"id": "7d7c381b-7feb-4155-991f-074ae53e6bd9", "name": "Meta", "icons": [{"id": "374b5fbc-15f0-45c0-9a47-857f7443bb05", "name": "Meta Oculus", "type": "light"}]}]}, {"id": "f2c3bf6c-3130-4145-811e-ca864b52b129", "name": "Matrixport", "tags": [], "issuers": ["Matrixport"], "match_rules": null, "icons_collections": [{"id": "886b383c-a02a-4566-a618-a0fc0a9e9cd1", "name": "Matrixport", "icons": [{"id": "54b968d4-f6c7-4103-badc-6d2069416f7c", "name": "Matrixport", "type": "dark"}, {"id": "c889935d-01fe-4e4c-a667-7a38b63a6de1", "name": "Matrixport", "type": "light"}]}]}, {"id": "f2d06792-362b-4fd6-85fb-5144757a8f40", "name": "MyHeritage", "tags": ["heritage"], "issuers": [], "match_rules": null, "icons_collections": [{"id": "ef5b7df4-55d3-49ca-9ec0-93d380302884", "name": "MyHeritage", "icons": [{"id": "ebd92db2-33cf-42f9-8bdb-d9d32b9a2261", "name": "MyHeritage", "type": "light"}]}]}, {"id": "f3379d7d-69ed-4970-9b18-f293b993b829", "name": "Hack The Box", "tags": [], "issuers": ["Hack The Box"], "match_rules": [], "icons_collections": [{"id": "78506e72-bbbb-462a-9c04-6b8ac4ee4a7f", "name": "Hack The Box", "icons": [{"id": "20537ec5-feb1-4f65-a5b4-78c392528787", "name": "Hack The Box", "type": "light"}]}]}, {"id": "f371af0d-6559-4bda-9dc9-e0c49fe90f82", "name": "Current RMS", "tags": [], "issuers": [], "match_rules": [{"text": "Current RMS", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Current RMS", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e4b3a960-9742-4151-87ac-d8485f0c5044", "name": "Current RMS", "icons": [{"id": "4b317d12-002a-4900-800a-5b0819c170de", "name": "Current RMS", "type": "light"}]}]}, {"id": "f3ba89b1-68a6-4ad9-bbc4-8555176c98b7", "name": "Mimecast", "tags": [], "issuers": [], "match_rules": [{"text": "Mimecast", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Mimecast", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "005eb58c-4a8f-4f81-936f-dc5543c4e96d", "name": "Mimecast", "icons": [{"id": "dd2e25f3-5dc7-45e4-8a0a-85bc69d55f66", "name": "Mimecast", "type": "light"}]}]}, {"id": "f3d3486c-ab83-434c-8304-88a7a00e31cb", "name": "Freshworks", "tags": [], "issuers": [], "match_rules": [{"text": "Freshworks", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Freshworks", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "f4f8df6d-5ed7-49fa-9e82-59df822f05f7", "name": "Freshworks", "icons": [{"id": "d1421216-a585-49b8-ae61-5c097ab110fb", "name": "Freshworks", "type": "light"}]}]}, {"id": "f3dae646-0cfa-467d-9ecc-06790e1aa6d2", "name": "Samsung", "tags": [], "issuers": [], "match_rules": [], "icons_collections": [{"id": "6ffeb8a0-4031-482a-8e00-83262509c864", "name": "Samsung", "icons": [{"id": "74678e8e-f8e3-431d-8ab5-f99d5efe76a9", "name": "Samsung", "type": "light"}, {"id": "d9b0dce9-df67-4d68-993a-e03ddcd45191", "name": "Samsung", "type": "dark"}]}]}, {"id": "f3dc384d-ced9-49ba-be8a-bdf774a4fde2", "name": "Scaleway", "tags": [], "issuers": [], "match_rules": [{"text": "Scaleway", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Scaleway", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "dd09ae88-eefa-46f6-935f-ff4154b8d745", "name": "Scaleway", "icons": [{"id": "3f1aad59-be39-41b0-8126-1de14b48538b", "name": "Scaleway", "type": "dark"}, {"id": "c6dfe675-5e75-4ae1-9247-263e10a40d40", "name": "Scaleway", "type": "light"}]}]}, {"id": "f4308a8d-6983-466b-a51e-345f1c2d4273", "name": "FTX", "tags": [], "issuers": ["FTX US", "FTX"], "match_rules": [], "icons_collections": [{"id": "003e95fa-9605-4c93-9628-060415a0c6aa", "name": "FTX", "icons": [{"id": "2c910a31-1c62-4836-af25-16b7c86f5a99", "name": "FTX", "type": "light"}]}]}, {"id": "f4582c15-0a20-4f15-a7aa-700dca00d02d", "name": "Toodledo", "tags": [], "issuers": [], "match_rules": [{"text": "Toodledo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Toodledo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "be6e929b-9fec-4383-86ad-862e074e0cc0", "name": "Toodledo", "icons": [{"id": "97646f59-cd08-48a5-8bf8-5165a37388c8", "name": "Toodledo", "type": "light"}]}]}, {"id": "f478c5ea-d8e6-4325-b418-a84013520d7c", "name": "JURA Elektroapparate AG", "tags": [], "issuers": ["JURA Elektroapparate AG"], "match_rules": [], "icons_collections": [{"id": "17367aba-2f2e-4921-9df3-279765cf39e0", "name": "JURA Elektroapparate AG", "icons": [{"id": "7b23bf8c-cf83-4fcf-86b7-630caaee1388", "name": "JURA Elektroapparate AG", "type": "light"}]}]}, {"id": "f4849b82-e5e5-40fa-bb33-5be34bb83689", "name": "WB Games", "tags": ["Warner", "Bros", "Brothers"], "issuers": ["WB Games Account"], "match_rules": null, "icons_collections": [{"id": "04164b86-1b37-4ddd-9bb0-0dd46b23c216", "name": "WB Games Account", "icons": [{"id": "2bc5a358-cc6e-4525-b1e8-3ec1b4e3a883", "name": "WB Games Account", "type": "light"}, {"id": "ecf852e1-ab51-4676-acf6-d9adcc0d06d4", "name": "WB Games Account", "type": "dark"}]}]}, {"id": "f506d1b4-099d-495e-a1a4-c7ecec4d007d", "name": "HurricaneElectric", "tags": [], "issuers": ["ipv6.he.net"], "match_rules": [], "icons_collections": [{"id": "1d9af0ec-056c-4d54-9f99-74011dd76dc5", "name": "HurricaneElectric", "icons": [{"id": "a0288553-c0ff-4baf-93b1-97b871c4163b", "name": "HurricaneElectric", "type": "light"}]}]}, {"id": "f55c3ab8-86f8-40cc-a6da-b9cc35a90ff8", "name": "MURAL", "tags": [], "issuers": [], "match_rules": [{"text": "MURAL", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "MURAL", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "604445d7-9f7c-4acb-b662-4b17dc18a026", "name": "MURAL", "icons": [{"id": "3907290b-c751-4bc0-89e6-7feec306c8ad", "name": "MURAL", "type": "light"}, {"id": "7b70df59-7328-4a48-8ee6-667eac761635", "name": "mural", "type": "dark"}]}]}, {"id": "f580a770-c632-45a0-af1d-f6b616f0393f", "name": "Envoyer", "tags": [], "issuers": [], "match_rules": [{"text": "Envoyer", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Envoyer", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d239a00c-647a-4e86-8f86-aa8a44fc897e", "name": "Envoyer", "icons": [{"id": "a69f50e5-a614-47af-a341-c547a450a5a3", "name": "Envoyer", "type": "light"}]}]}, {"id": "f5a9a8e5-3167-4b11-a680-03d8aad50784", "name": "Joomla", "tags": [], "issuers": ["Joomla"], "match_rules": [], "icons_collections": [{"id": "fb3f31b8-6ea6-44f9-9129-9094f54ff8f5", "name": "Joomla", "icons": [{"id": "e4660cc9-7c81-4ac0-9c5c-f020f18a8ebc", "name": "Joomla", "type": "light"}]}]}, {"id": "f5d5cb4c-6daa-4926-8891-dd63cc2683c2", "name": "Buhl", "tags": [], "issuers": [], "match_rules": [{"text": "Buhl", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Buhl", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "105803cf-d226-4380-b5e8-f909e4554e8a", "name": "Buhl", "icons": [{"id": "df44b423-09e0-4805-be13-354a9ecb3b4a", "name": "Buhl", "type": "light"}]}]}, {"id": "f5db7e54-c559-45e3-a5f9-7686c0951cb9", "name": "VentraIP", "tags": [], "issuers": [], "match_rules": [{"text": "VentraIP", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "VentraIP", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ffb1e97e-4757-4595-afff-4d881e426043", "name": "VentraIP", "icons": [{"id": "3e9037f7-7852-407a-ab3c-4af4dfce4dd4", "name": "VentraIP", "type": "light"}]}]}, {"id": "f5e3e428-9ff8-4b37-8fb0-cf755e49826d", "name": "Bitbuy", "tags": [], "issuers": [], "match_rules": [{"text": "Bitbuy", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Bitbuy", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c26c74e3-8766-4ca7-baf5-d0ac72a87394", "name": "Bitbuy", "icons": [{"id": "18ba511c-8422-4e9c-99dd-c71b13d7875d", "name": "Bitbuy", "type": "light"}]}]}, {"id": "f679765a-0626-4ae8-87ca-6f7dc194c77a", "name": "Deel", "tags": [], "issuers": [], "match_rules": [{"text": "Deel", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Deel", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77678f23-9d59-4519-8f4f-a0a57d89d748", "name": "Deel", "icons": [{"id": "19784ca9-04b1-4cd8-bf62-0554891695e1", "name": "Deel", "type": "light"}]}]}, {"id": "f6888c4f-4c5b-4027-8b56-8616bae20ac6", "name": "FastComet", "tags": [], "issuers": [], "match_rules": [{"text": "FastComet", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "FastComet", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1417fa05-e939-4125-a6f3-e963f6271847", "name": "FastComet", "icons": [{"id": "d837720e-c52b-4b15-bec8-bd68c0ae4650", "name": "FastComet", "type": "light"}]}]}, {"id": "f6de2caf-aa67-4e98-a6aa-3682b826a21c", "name": "BTC Markets", "tags": [], "issuers": ["BtcMarkets"], "match_rules": [], "icons_collections": [{"id": "2f4917ca-8e34-4271-9e6c-5d234a181a94", "name": "BTCMarkets", "icons": [{"id": "63725a39-7e60-4f11-9c2a-640a270ef96c", "name": "BTCMarkets", "type": "light"}]}]}, {"id": "f71f70c4-a7f8-4873-b956-fdce31de3e4a", "name": "Sogo", "tags": [], "issuers": [], "match_rules": [{"text": "Sogo", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Sogo", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9f70072b-141a-4307-8c60-8a49c0640818", "name": "Sogo", "icons": [{"id": "e315c8ca-a6d7-42e4-982e-e042ff13709d", "name": "Sogo", "type": "light"}]}]}, {"id": "f7309d90-ff20-4107-9587-24d33c0810e8", "name": "Pixieset", "tags": [], "issuers": [], "match_rules": [{"text": "Pixieset", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pixieset", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "2b110137-a810-4cff-a2f5-90ca5d252c8e", "name": "Pixieset", "icons": [{"id": "b5d8119d-be53-4d4a-b43a-00565785e189", "name": "Pixieset", "type": "dark"}, {"id": "c7631f8b-3e66-48fa-96d9-81a63bf81fdd", "name": "Pixieset", "type": "light"}]}]}, {"id": "f73f0f10-fa7f-471d-980c-7f97a1546688", "name": "DEGIRO", "tags": [], "issuers": ["DEGIRO"], "match_rules": null, "icons_collections": [{"id": "38d29122-8fa4-484d-94ee-d10f1a5efbc3", "name": "DEGIRO", "icons": [{"id": "f9a680a5-7d15-4e84-9478-c8049bc862f9", "name": "DEGIRO", "type": "light"}]}]}, {"id": "f762bea4-d385-4a35-be4a-ffcda80931e9", "name": "Hetzner", "tags": [], "issuers": ["Hetzner"], "match_rules": [], "icons_collections": [{"id": "86ee7a24-b59a-4f75-b2aa-18bb718b903a", "name": "Hetzner", "icons": [{"id": "221c3b16-aac7-4240-acf9-e9eb3c921945", "name": "Hetzner", "type": "light"}, {"id": "b2ba9cc5-047b-4bbe-98d1-2e526ba7fac4", "name": "Hetzner", "type": "dark"}]}]}, {"id": "f76dc205-7c4a-4413-b80b-75bf8898502e", "name": "Questrade", "tags": [], "issuers": ["Questrade"], "match_rules": [], "icons_collections": [{"id": "46a1e2f1-6949-46f8-8929-92059652e041", "name": "Questrade", "icons": [{"id": "c072cac6-531b-4ca1-ae13-d384f675fe69", "name": "Questrade", "type": "light"}]}]}, {"id": "f79b5297-c5ba-499d-b91b-00eca37da6bb", "name": "Aruba Instant On", "tags": [], "issuers": [], "match_rules": [{"text": "Aruba Instant On", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Aruba Instant On", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "88639af3-e04b-45b6-926d-f7791998b823", "name": "Aruba Instant On", "icons": [{"id": "95332f67-8699-4116-a66a-bf5c4775f2aa", "name": "Aruba Instant On", "type": "light"}]}]}, {"id": "f82a02c7-c5af-4789-95bc-37cdba23fcce", "name": "Kriptomat", "tags": [], "issuers": [], "match_rules": [{"text": "Kriptomat", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Kriptomat", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "a1007044-db32-4abc-844e-6e684b91ba31", "name": "Kriptomat", "icons": [{"id": "9c9dccfa-2331-4ed0-bfc5-a7a1335155e7", "name": "Kriptomat", "type": "light"}]}]}, {"id": "f86f896c-dab5-41bf-a26a-c2f72db97147", "name": "Vaultwarden", "tags": [], "issuers": [], "match_rules": [], "icons_collections": [{"id": "9e8e1d18-b9da-47d2-ab45-1ff78a398adf", "name": "Vaultwarden", "icons": [{"id": "5380b8c3-f224-4278-af4d-6b4a19d869a1", "name": "Vaultwarden", "type": "dark"}, {"id": "68528055-b4be-49cc-8e49-f46ddb02449d", "name": "Vaultwarden", "type": "light"}]}]}, {"id": "f8b057b6-472f-4558-958b-3c2dfe6e7163", "name": "University of Otago", "tags": [], "issuers": [], "match_rules": [{"text": "University of Otago", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Otago", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "05fd202a-986f-449f-bebf-52f70aa01d5a", "name": "University of Otago", "icons": [{"id": "e4a54e3f-3785-499f-bd27-e50bee3d3b6a", "name": "University of Otago", "type": "light"}]}]}, {"id": "f94aa238-33ff-4804-858d-46f2681b1a57", "name": "Nexon", "tags": [], "issuers": [], "match_rules": [{"text": "Nexon", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Nexon", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "6870295d-9e5d-48a4-88f0-66def67948e5", "name": "Nexon", "icons": [{"id": "7e17b194-2f98-4851-b424-9d78ceb1501d", "name": "Nexon", "type": "light"}]}]}, {"id": "f956a148-2a36-4906-9f2f-4f07daedf566", "name": "SolarWinds", "tags": [], "issuers": [], "match_rules": [{"text": "SolarWinds", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "SolarWinds", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c3a989dc-0893-49e4-90ac-73cd967b731f", "name": "SolarWinds", "icons": [{"id": "c644cb3f-bd7c-4d3d-b6fa-e0bea41f01eb", "name": "SolarWinds", "type": "light"}]}]}, {"id": "f9e983fd-ebff-4ab2-afa7-8a83eae8ded2", "name": "CloudConvert", "tags": [], "issuers": [], "match_rules": [{"text": "CloudConvert", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CloudConvert", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ecaba12b-0139-4156-b6ec-2f21ba67efc1", "name": "CloudConvert", "icons": [{"id": "eb22b1ad-fdd0-4e43-8a62-9fb3fe13184a", "name": "CloudConvert", "type": "light"}]}]}, {"id": "f9f298ef-7de4-4cf0-9091-72d1c62104c3", "name": "Crowd Supply", "tags": [], "issuers": [], "match_rules": [{"text": "Crowd Supply", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Crowd Supply", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "77963b50-6fac-47a5-8157-9082ea989cce", "name": "Crowd Supply", "icons": [{"id": "e175ebef-d195-4525-9b54-7f389fddf629", "name": "Crowd Supply", "type": "light"}]}]}, {"id": "fa0801c4-e26b-47b2-85b3-8e1f3dcd21c5", "name": "Crypto.com", "tags": [], "issuers": ["crypto.com"], "match_rules": [], "icons_collections": [{"id": "93d4f71f-05e8-4442-885b-24b742be8459", "name": "Crypto.com", "icons": [{"id": "45965f47-72c5-4837-be53-824941c6c36c", "name": "Crypto.com", "type": "light"}, {"id": "9b5ba37c-271b-4022-bc99-567ed8f8e71a", "name": "Crypto.com", "type": "dark"}]}]}, {"id": "fa3812f2-3520-4e6f-9365-246215f59b71", "name": "Skinport", "tags": [], "issuers": [], "match_rules": [{"text": "Skinport", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "c8b94125-e8eb-4661-a6c3-d9bd064ede8a", "name": "Skinport", "icons": [{"id": "e2367264-0354-4375-b537-bd735e3cce67", "name": "Skinport", "type": "light"}]}]}, {"id": "fa63a7f1-557e-4eda-813a-274e405f0559", "name": "ArenaNet", "tags": [], "issuers": ["ArenaNet"], "match_rules": [], "icons_collections": [{"id": "27a27849-ac36-4374-a156-32cc4e58d464", "name": "arena.net", "icons": [{"id": "57d4c5e4-3451-450c-a826-da5d5daf4bdf", "name": "arena.net", "type": "dark"}, {"id": "6e245eff-3eae-4b87-9d05-a5bbfea39217", "name": "arena.net", "type": "light"}]}]}, {"id": "fab55d74-7721-4eba-992e-608cc0158712", "name": "Starling Bank", "tags": [], "issuers": [], "match_rules": [{"text": "Starling Bank", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Starling Bank", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Starling(\\+|\\s|-|_)Bank", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "Starling(\\+|\\s|-|_)Bank", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "4321bc5b-6bde-415c-998e-5786e07b3c78", "name": "Starling Bank", "icons": [{"id": "3b239d96-a6cb-4f23-8362-9a7abe981ba3", "name": "Starling Bank", "type": "light"}]}]}, {"id": "fac857f1-b687-44ae-8c84-3f1d360c830b", "name": "DCS World", "tags": [], "issuers": [], "match_rules": [{"text": "DCS World", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "DCS World", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "d61af4dc-565e-4e69-a7e6-9db4a819f220", "name": "DCS World", "icons": [{"id": "dd309ec3-f8b1-4488-93c5-56ba9f8dabb0", "name": "DCS World", "type": "light"}, {"id": "f18d7b08-3f49-45d1-b50e-ae12f3e25006", "name": "DCS World", "type": "dark"}]}]}, {"id": "fad4b929-928a-46ce-8e06-8906ac02d20c", "name": "Niagahoster", "tags": [], "issuers": [], "match_rules": [{"text": "Niagahoster", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Niagahoster", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "ba8ec043-8a4d-4db9-bcc6-47a751be942b", "name": "Niagahoster", "icons": [{"id": "da2d9f10-3681-45ff-ab0c-b221ca4e2363", "name": "Niagahoster", "type": "light"}]}]}, {"id": "fb29aa88-b20a-41e2-93f5-bd523efafd8f", "name": "Wirex", "tags": [], "issuers": [], "match_rules": [{"text": "Wirex", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Wirex", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0894b232-4b02-473b-9fe7-e448127bc3e5", "name": "Wirex", "icons": [{"id": "3e697e6b-f1a8-4a5d-80e6-6742bdb7873e", "name": "Wirex", "type": "light"}]}]}, {"id": "fb2c6356-a37d-4515-a54a-8403471d5885", "name": "Gogs", "tags": [], "issuers": ["Gogs"], "match_rules": [], "icons_collections": [{"id": "ae1f5718-ad69-4957-bad6-cc7fcabc26d4", "name": "Gogs", "icons": [{"id": "d02d6e27-3686-43e6-9a91-a46f0919516e", "name": "Gogs", "type": "light"}]}]}, {"id": "fb35f352-aefb-4ff9-b618-2e7c2fd5c18e", "name": "Blockchains, LLC", "tags": [], "issuers": ["Blockchains, LLC."], "match_rules": [], "icons_collections": [{"id": "5f6b8637-d24d-4245-b360-005046e55c70", "name": "Blockchains, LLC", "icons": [{"id": "12679fc9-dd20-4e2b-ae67-24d9f2ae7500", "name": "Blockchains, LLC", "type": "dark"}, {"id": "7c1cfbe4-fed6-4f3e-8ee2-609a785496d1", "name": "Blockchains, LLC", "type": "light"}]}]}, {"id": "fb9c083f-8f5f-42ee-a9a6-8c51a7e5a963", "name": "Fathom", "tags": [], "issuers": [], "match_rules": [{"text": "Fathom", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Fathom", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7403e02f-7cde-435e-a7a3-74262230979c", "name": "Fathom", "icons": [{"id": "dccce195-3667-4d3f-b1ac-6c6fe30e76c7", "name": "Fathom", "type": "light"}]}]}, {"id": "fb9f7bf4-2f57-42f8-bd80-023c1f53b8c2", "name": "Threshold", "tags": [], "issuers": ["Threshold"], "match_rules": null, "icons_collections": [{"id": "391c7f84-6909-4019-a1c2-5dc208364ace", "name": "Threshold", "icons": [{"id": "2016132d-760f-43ae-ad96-568d757248a4", "name": "Threshold", "type": "light"}, {"id": "a7db038d-cf13-4ce6-9d55-320eed4c0f30", "name": "Threshold", "type": "dark"}]}]}, {"id": "fba0f493-cb2a-4f84-914a-ce26b1145782", "name": "CoinStats", "tags": [], "issuers": [], "match_rules": [{"text": "CoinStats", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "816e759c-2c73-45b7-ad93-702c184cff77", "name": "CoinStats", "icons": [{"id": "0f692a1f-ae76-4a68-b041-a609f8a10083", "name": "CoinStats", "type": "light"}]}]}, {"id": "fbb55c4d-aac4-4aa6-bdee-92290594f0d0", "name": "Cointraffic", "tags": [], "issuers": [], "match_rules": [{"text": "Cointraffic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Cointraffic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "01d512e6-f0c1-4744-8015-ec73085575b9", "name": "Cointraffic", "icons": [{"id": "14e9d19c-6473-4c35-8562-7848f49a7779", "name": "Cointraffic", "type": "light"}]}]}, {"id": "fbd38226-1c28-4466-b238-54305ed57f3a", "name": "MS 365", "tags": ["Microsoft"], "issuers": [], "match_rules": [{"text": "Microsoft 365", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Microsoft 365", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "246abec1-9301-4973-b3f3-428a3bc06d48", "name": "MS 365", "icons": [{"id": "4c2e2f82-4b1f-4c13-839e-69cd0ffa1128", "name": "Microsoft 365", "type": "light"}]}]}, {"id": "fbec07ef-f5a6-4754-a160-d151ace83a20", "name": "Brandwatch", "tags": [], "issuers": [], "match_rules": [{"text": "Brandwatch", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Brandwatch", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9701f706-b728-4f2f-810c-055ef72f8a5f", "name": "Brandwatch", "icons": [{"id": "6aad25c0-2bcd-46b6-b4e8-a510fd97d5b2", "name": "Brandwatch", "type": "light"}]}]}, {"id": "fbf7bd09-937b-48f2-81e1-4ff1f3215247", "name": "Technic", "tags": [], "issuers": [], "match_rules": [{"text": "Technic", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Technic", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "e7d8c8ac-f74d-45bf-a2a1-5a210defc060", "name": "Technic", "icons": [{"id": "de929264-1255-4a4b-86ae-bee86b5683c0", "name": "Technic", "type": "light"}]}]}, {"id": "fc65eeac-5e2c-4134-9eef-ad4cec5e7a6f", "name": "Huawei", "tags": [], "issuers": [], "match_rules": [{"text": "Huawei", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Huawei", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "aa50b4af-bd32-4e4e-98c5-5ec7e046a49a", "name": "Huawei", "icons": [{"id": "7cff85b5-0dc0-41a9-b1e3-fc2d5a21313f", "name": "Huawei Cloud", "type": "light"}]}]}, {"id": "fc74cd86-c86b-4f8a-963e-bddc59c4e1c6", "name": "Frame", "tags": [], "issuers": [], "match_rules": [{"text": "Frame", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Frame", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "73afc6d8-4c4d-46e6-9b36-5862b9b5ccb7", "name": "Frame", "icons": [{"id": "28b2f690-e30b-41f0-b52f-4e561f60f9cd", "name": "Frame", "type": "light"}]}]}, {"id": "fc766efb-e6cb-4718-85b3-8fd1de572abe", "name": "BlueSnap", "tags": [], "issuers": [], "match_rules": [{"text": "BlueSnap", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "BlueSnap", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "633b3d2f-b8c8-4219-83f8-4c3accbe4657", "name": "BlueSnap", "icons": [{"id": "b505cb19-ce9b-4998-8ce8-a6a60d8804f8", "name": "BlueSnap", "type": "light"}]}]}, {"id": "fc7eaf24-eb31-4a86-85c5-d86471eabd11", "name": "System76", "tags": [], "issuers": [], "match_rules": [{"text": "System76", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "System76", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "0550ec18-8151-446a-b7df-a0acdc0b857a", "name": "System76", "icons": [{"id": "f2deb3a3-ae82-4cea-81c5-38d1e7f0c1e6", "name": "System76", "type": "light"}]}]}, {"id": "fd322bab-6431-4e6d-80c7-96a8559543f9", "name": "Pocket", "tags": [], "issuers": [], "match_rules": [{"text": "Pocket", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Pocket", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "7f42621f-55a9-4ee8-a978-3ac9f0797893", "name": "Pocket", "icons": [{"id": "531b31fb-de75-4a8d-b02f-8d01a21abc3f", "name": "Pocket", "type": "light"}]}]}, {"id": "fd842cd6-1ce0-4b09-a7d7-ee10f30845b2", "name": "Razer", "tags": [], "issuers": ["Razer"], "match_rules": [], "icons_collections": [{"id": "c4e2d69c-f532-4795-990d-fe380bd517ba", "name": "Razer", "icons": [{"id": "975dc85c-5c56-478b-961c-1cf996476347", "name": "Razer", "type": "light"}]}]}, {"id": "fd8f0a74-239d-42bf-a537-38cf9cf2c7f2", "name": "Qualifio", "tags": [], "issuers": ["Qualifio"], "match_rules": null, "icons_collections": [{"id": "284940c6-710d-473a-a7e5-c9f43001033b", "name": "Qualifio", "icons": [{"id": "7c2de2c0-1943-4550-8e98-611ae3f06c12", "name": "Qualifio", "type": "light"}]}]}, {"id": "fdb95870-569c-471f-84ce-0356d13da20e", "name": "Google", "tags": [], "issuers": ["Google"], "match_rules": [], "icons_collections": [{"id": "66190b0f-9600-4a6f-b06b-33254b5316ad", "name": "Google", "icons": [{"id": "6de001fb-6104-4fce-a622-630b820a7ea9", "name": "Google", "type": "light"}]}]}, {"id": "fdc49d4e-9001-4734-ae81-214cc74ffa10", "name": "Coincheck", "tags": [], "issuers": [], "match_rules": [{"text": "Coincheck", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Coincheck", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "9f0cf664-b0a5-4174-9f16-e55b49bb8289", "name": "Coincheck", "icons": [{"id": "615bca14-cf01-4169-8a86-265b84778e03", "name": "Coincheck", "type": "light"}]}]}, {"id": "fdd47935-9157-4e1c-bab8-a44671603581", "name": "Hestia Control Panel", "tags": [], "issuers": [], "match_rules": [{"text": "Hestia Control Panel", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "Hestia Control Panel", "field": "issuer", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "85fbeb02-ceff-42bb-a852-a377ece60bbf", "name": "Hestia Control Panel", "icons": [{"id": "223eb0f5-9d93-4932-888b-d563ff102aa8", "name": "Hestiacp", "type": "light"}]}]}, {"id": "fde0ed28-9edb-487a-acbc-d8c5e91daf7d", "name": "Kite", "tags": ["Zerodha"], "issuers": ["kite"], "match_rules": null, "icons_collections": [{"id": "1a0adfa5-37ea-4315-8b48-ee1d7297b1b1", "name": "Kite", "icons": [{"id": "962b1e6d-109f-4b19-82a6-85417ea6db02", "name": "Kite", "type": "light"}]}]}, {"id": "fdf8841c-9b3b-46db-9e9f-5315015b733d", "name": "hide.me VPN", "tags": [], "issuers": [], "match_rules": [{"text": "hide.me VPN", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "hide.me VPN", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "226e9a72-47bb-455a-8f08-92a26740723a", "name": "hide.me VPN", "icons": [{"id": "350c418a-5143-4f02-b057-64a7b5a323b8", "name": "hide.me VPN", "type": "light"}]}]}, {"id": "fe4a7604-1485-4f78-81ea-2dae5c34fc2a", "name": "Dext Prepare", "tags": [], "issuers": [], "match_rules": [{"text": "Dext Prepare", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "Dext Prepare", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "07eb5464-2dd9-4e65-831d-f349652d2a5f", "name": "Dext Prepare", "icons": [{"id": "ce161084-3ac4-4978-86f7-18b6f2f58485", "name": "Dext Prepare", "type": "light"}]}]}, {"id": "fed5abe5-3bd5-4b3f-8b12-0cedd32f9080", "name": "iTrust Capital", "tags": [], "issuers": [], "match_rules": [{"text": "iTrust Capital", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "iTrust Capital", "field": "label", "matcher": "contains", "ignore_case": true}, {"text": "iTrust(\\+|\\s|-|_)Capital", "field": "issuer", "matcher": "regex", "ignore_case": true}, {"text": "iTrust(\\+|\\s|-|_)Capital", "field": "label", "matcher": "regex", "ignore_case": true}], "icons_collections": [{"id": "9a38ecdf-3fd0-48bc-a0c8-985cff6df7da", "name": "iTrust Capital", "icons": [{"id": "414a1176-2d11-4dec-a82a-50ca47390271", "name": "iTrust Capital", "type": "light"}, {"id": "9ef44968-ff95-4e43-a1cf-de9a65d980e2", "name": "iTrust Capital", "type": "dark"}]}]}, {"id": "fedbf513-6136-460b-970d-fc468637c64e", "name": "InMotion Hosting", "tags": [], "issuers": [], "match_rules": [{"text": "InMotion Hosting", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "InMotion Hosting", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "92636822-e01f-4479-b079-833a32f52103", "name": "InMotion Hosting", "icons": [{"id": "dd117369-5495-48d8-8bef-12c92c1a61ff", "name": "InMotion Hosting", "type": "light"}]}]}, {"id": "ff0b65aa-ff15-4e42-ba4c-bd04a281f509", "name": "Parallels", "tags": [], "issuers": ["Parallels"], "match_rules": null, "icons_collections": [{"id": "ec02758e-b344-4e99-8aa6-bb4436cad989", "name": "Parallels", "icons": [{"id": "158c1c9f-86a4-4758-abab-7596f8ff73d4", "name": "Parallels", "type": "light"}]}]}, {"id": "ff0ed7b6-0716-46fa-8646-052883572f1f", "name": "Roberts Space Industries", "tags": ["rsi"], "issuers": ["Roberts Space Industries"], "match_rules": null, "icons_collections": [{"id": "7c4a3fa2-5a2d-43e0-b87e-5c3628eae326", "name": "Roberts Space Industries", "icons": [{"id": "058fe5bb-83e4-4063-adc9-c74ec6e87c4d", "name": "Roberts Space Industries", "type": "light"}]}]}, {"id": "ff328fdc-ae0b-4d95-92d4-7b7ca4266f65", "name": "CoinTracking", "tags": [], "issuers": [], "match_rules": [{"text": "CoinTracking", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "CoinTracking", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "52074c1a-8fea-49ab-bda7-e2551021d957", "name": "CoinTracking", "icons": [{"id": "3053b59b-a430-44ae-a529-6953da919c51", "name": "CoinTracking", "type": "light"}]}]}, {"id": "ffe11441-947f-47eb-97eb-c4fe99f2ccfa", "name": "University of Groningen", "tags": [], "issuers": [], "match_rules": [{"text": "University of Groningen", "field": "issuer", "matcher": "contains", "ignore_case": true}, {"text": "University of Groningen", "field": "label", "matcher": "contains", "ignore_case": true}], "icons_collections": [{"id": "1a570717-7b28-4311-b1aa-b1cb265c1b27", "name": "University of Groningen", "icons": [{"id": "1dbcb5f8-5bbe-4970-8837-fdd5e0d6e781", "name": "University of Groningen", "type": "light"}]}]}] \ No newline at end of file From d6feb634558811ce99964721434e603205262559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=C2=A0Koby=C5=82ko?= Date: Thu, 16 Nov 2023 22:33:25 +0100 Subject: [PATCH 14/14] Bump version 5.1.0 (5000009) --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index d1d772b2..a7de5521 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -18,7 +18,7 @@ android { defaultConfig { applicationId = "com.twofasapp" versionName = "5.1.0" - versionCode = 5000008 + versionCode = 5000009 val versionCodeOffset = 5000000

T8+=2=sD20^iRL&bmB#F3{ODPx!oO;% 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 PTBNt9uSeOUsEq#r9*RpimtbYC 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/5d30a2f3-ea07-452a-8c18-7cc5e07414d6.png b/parsers/src/main/assets/icons/5d30a2f3-ea07-452a-8c18-7cc5e07414d6.png new file mode 100644 index 0000000000000000000000000000000000000000..c8956db389b4e67ac36584a5da117d6118311d85 GIT binary patch literal 1312 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/604e45b4-98c9-4e42-b41a-ab34b5c2f2dc.png b/parsers/src/main/assets/icons/604e45b4-98c9-4e42-b41a-ab34b5c2f2dc.png new file mode 100644 index 0000000000000000000000000000000000000000..4b292bb6be5bb659552258d022ca14486975a219 GIT binary patch literal 1208 zcmeAS@N?(olHy`uVBq!ia0vp^6(G#P3?%t>9eV(z`~rMJT-^(N{!xy$lR244y8IAsP4H-cBrEWx&Ih zprv3T>gam>|Nq6;HJ!LsDuoXem%ZE6fBQ(ggXe7l*MK?icAA-mZgGi`DwPqp{BS+2 z_Q9Y2Kd(>xe0{mBQ{<)96JN2<{#I{$X>U*ehe7&&j-#_5I=% zs;}QYRlni%?x0!GojyjDpG9Ak=P{J0_)d#9aOPViA5^oURi?c8p82Nfuqxud7gFAFrZF_K zu9^ShTTj1ABmQ@*nw0tOxu>_>X)V0P>>#r6lsw^+>r&&G9;dL$Ob9gadUk+O^0a|p z+Clr)gS)%*0yem(x#h^6nL177#((WuIt}fC$_Xl`jSrqx`JsOLx0zSd9=;!iPZph+ zZ-4t`Q6-C=4%4*j``jK>op$YPIxaZLJ)u15aZk)8j!KR;XI{RO${UJi1~T)V@NO>8 z$??l>eBIOk*(;%NW3g_*%Mxye|FRbQQ%`A#Gn&8jlYVJau z^#Ege^36}%lDL1_N~bHH{vng*P_|BI#|{hQN`pXI|65W8mzJIV6gX?yC;5OyPoCJG z_wG1b{o7`$s`~a-yje+k>hTsv8y;+tsNDZCT&Y2psnJK@e6RU)^?in04yjF;$!a!< zr%}~t^AeA=N)EMcZzGE~bZ|{_EbzDUpKvoZxrwJKvS>$Gal;9N8Oq$z%#%|j{wQ2$ zsoWvgK0)+>q2#@PGj~h}GJd+{#!Y|pVe93F_LQn_eR203(FzZ>gW*3FLp8q_)^6gM zX7;MEz(eeyOyu2p7bY`q@HsYnb(Imrw3A(RJ#Sq1%@;5z*MEILwlZ8fp>xfvohMtS z&6dgExsuEG_ng%?)fQ{V)UN!!s%8_%vrTK5*;6FGQFOt`(WA{_Vf9_YA1b7=+9xcKPmR%&#`yx zH<{j@aLr@(H+!%A;OE)j=Vl%Vyl`a48EGlqA9D2{3t!JSysp}Jd+(%8QJrMuh`JbV;_*!OkgTe~DWM4fuW3?V literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/67be0784-57eb-42b7-b884-1e4ae8208e34.png b/parsers/src/main/assets/icons/67be0784-57eb-42b7-b884-1e4ae8208e34.png new file mode 100644 index 0000000000000000000000000000000000000000..8a3b7b0f04fc6eda7ee1bb8c2b0eef805283f0a3 GIT binary patch literal 5865 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 Ho2dT-%K2^% literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/69b7a59e-0e5c-46af-bf93-8cc8828141bc.png b/parsers/src/main/assets/icons/69b7a59e-0e5c-46af-bf93-8cc8828141bc.png new file mode 100644 index 0000000000000000000000000000000000000000..3708d3c8351a8e8be8f92f870615d47520e18366 GIT binary patch literal 4493 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 literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/7bfc8adb-4774-4ceb-9613-ddb4ac565444.png b/parsers/src/main/assets/icons/7bfc8adb-4774-4ceb-9613-ddb4ac565444.png new file mode 100644 index 0000000000000000000000000000000000000000..e6d3d0385ed597bd20feacf405ff4f3acc6eaeba GIT binary patch literal 15019 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 Y7u-$7V5fio2^AnCp(tJ@YV`j90Cs5yO8@`> literal 0 HcmV?d00001 diff --git a/parsers/src/main/assets/icons/8083df03-fa0b-47ea-96e4-4851445c3702.png b/parsers/src/main/assets/icons/8083df03-fa0b-47ea-96e4-4851445c3702.png new file mode 100644 index 0000000000000000000000000000000000000000..9f899e0d81eded7254121df7f2859bf0e4ec16bb GIT binary patch literal 4439 zcmbW5Ra_Gew8zN-vLRhkqX!HSn4<;h5~)9918JnYQ--9{DUF2GU^J4Bk`NJ)5z?SY ziFC{LzTU_CaL)OhxAS{B=XbvG&z@?4?y=q@ARqu~X{s9jtAYO;4i{42dydK{Qe+|g4h$}3qMGDM=xC0^{M3Pe+qlM^*U zic4LEYzBz@o|RCmGm=u$0BorxiImA3%K-Cz)ukyiZFdnP0wWW5^_`Z1{UQHzr^lK_bTgi$a5zpXNun${Q+OUbam#Gp)e9HCEkHZ+|Y zwSU;beIvShPT8`Jjbw#i7qY^ZnP^%37Of3N-Fhllt-`L(OB`jJdld@g@$?d{D#}Ai zKW-Aa-}ygF-))3c2Z^egU)yT_f{Anr7mlfmD|P1L>jM+~e=ceT$+;KPX;e>5yda#7 zP}=w4@T@iws5Z>3RCjwQLE*si&-hRf1qctir9$mJY%i%dwe(1P=YGkaTnzs=73G4{lBa$QFMYeH?Ruazke zp;D$02V2hPqr%r*H|uH>mdu~$+~+e2FEuq?x1b$_BC+5p#WM|TYDDKNF^aXa`L(pc`oE_avt}Y5*IBn;9`R=7?pl-+c{k654^ZZmsWSI@vN}zpbhSy`bR8I)ehU zcFUXlCHjJ?@86&!5(0ONwOSVImne*I;(^tE2T(_}y6{Mf?gef-hb zx{)K>IJ@w_iAR$4ev_)~@aV-DgP0BbAC~H-6&ifAhB#So;WcY-eHx4xqyFC3HaV@d zvVjrO4-46E+AsJ|!q)*agoSDI!TTA_6fxhPF&nOsn20HXnGK;%C#%U$W7W)S@~N;B zUvk?PT-Mdr80{K8OF~3$U6a!%ikMhusr`{ETT0D|1>Yn?$-*J{h7G&BR{iw5`-$3? zFDII6G8HF$B|j3sz3$?6;RdW;Kb28oo3vW!SPNf2n6Y9fU7X~1OJ1jY2L~p%sIrWD z+Azi!lNwb_?v&p~lXBLIjC!KXCKduMPT<{?_=?v9yyDia*Rd&M`#8VN1T$~RF4Psab^!o85pqNk`xKm z3P8$ET!}o)WPw$egB*}0Bx>DRWWcbIE#zCxcJ3b@-wtu20bucdUivR`e}MgLP+`Tf zzi&U6+dbP|4Xv9|OhwVEWORv5$oOAdR8%)dm6m5Tm9cm9f4nt6_`4Acn<>?KRp=iP#PHW9D zN)_i~o)~%;X!-;8h!pkS-~i2^WrROcgk?ujS>UGZ0mIRhOGAY%?VFx@xFVOuioP1e zq(+IHe}vIM(Tx-~XQkPoAw*qPK^h54qzj#LZW8H}V zaGW2OLVfAj=qn#RukP&Dd7cQXh5@TGr6T(5*4#5Jj)iupAINuY9B=NCy}~ab=t|aJ zY@cOpw~p8c1)9m-*a886OdkEALKwFJByo+b<|SC0?_S1NyW(Zl6a;>#kt{Gnx@Ss^ z;wrGh6};@nc8hlc)*@rHz1Zc>(EkZm-c<06~o#q5%IEI>mpx% zVAW$8|AjtTlhoXYtQs$$e+(Dlw3@xFTrD=Dn$p82c+OaBf?k4Qq;evOZ1Zg`&8